/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { class AWS_SAGEMAKER_API CreatePresignedDomainUrlResult { public: CreatePresignedDomainUrlResult(); CreatePresignedDomainUrlResult(const Aws::AmazonWebServiceResult& result); CreatePresignedDomainUrlResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The presigned URL.

*/ inline const Aws::String& GetAuthorizedUrl() const{ return m_authorizedUrl; } /** *

The presigned URL.

*/ inline void SetAuthorizedUrl(const Aws::String& value) { m_authorizedUrl = value; } /** *

The presigned URL.

*/ inline void SetAuthorizedUrl(Aws::String&& value) { m_authorizedUrl = std::move(value); } /** *

The presigned URL.

*/ inline void SetAuthorizedUrl(const char* value) { m_authorizedUrl.assign(value); } /** *

The presigned URL.

*/ inline CreatePresignedDomainUrlResult& WithAuthorizedUrl(const Aws::String& value) { SetAuthorizedUrl(value); return *this;} /** *

The presigned URL.

*/ inline CreatePresignedDomainUrlResult& WithAuthorizedUrl(Aws::String&& value) { SetAuthorizedUrl(std::move(value)); return *this;} /** *

The presigned URL.

*/ inline CreatePresignedDomainUrlResult& WithAuthorizedUrl(const char* value) { SetAuthorizedUrl(value); return *this;} private: Aws::String m_authorizedUrl; }; } // namespace Model } // namespace SageMaker } // namespace Aws