78 lines
2.0 KiB
C++
78 lines
2.0 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/sagemaker/SageMaker_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
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<Aws::Utils::Json::JsonValue>& result);
|
|
CreatePresignedDomainUrlResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The presigned URL.</p>
|
|
*/
|
|
inline const Aws::String& GetAuthorizedUrl() const{ return m_authorizedUrl; }
|
|
|
|
/**
|
|
* <p>The presigned URL.</p>
|
|
*/
|
|
inline void SetAuthorizedUrl(const Aws::String& value) { m_authorizedUrl = value; }
|
|
|
|
/**
|
|
* <p>The presigned URL.</p>
|
|
*/
|
|
inline void SetAuthorizedUrl(Aws::String&& value) { m_authorizedUrl = std::move(value); }
|
|
|
|
/**
|
|
* <p>The presigned URL.</p>
|
|
*/
|
|
inline void SetAuthorizedUrl(const char* value) { m_authorizedUrl.assign(value); }
|
|
|
|
/**
|
|
* <p>The presigned URL.</p>
|
|
*/
|
|
inline CreatePresignedDomainUrlResult& WithAuthorizedUrl(const Aws::String& value) { SetAuthorizedUrl(value); return *this;}
|
|
|
|
/**
|
|
* <p>The presigned URL.</p>
|
|
*/
|
|
inline CreatePresignedDomainUrlResult& WithAuthorizedUrl(Aws::String&& value) { SetAuthorizedUrl(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The presigned URL.</p>
|
|
*/
|
|
inline CreatePresignedDomainUrlResult& WithAuthorizedUrl(const char* value) { SetAuthorizedUrl(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_authorizedUrl;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace SageMaker
|
|
} // namespace Aws
|