/** * 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 SMS { namespace Model { class AWS_SMS_API GenerateChangeSetResult { public: GenerateChangeSetResult(); GenerateChangeSetResult(const Aws::AmazonWebServiceResult& result); GenerateChangeSetResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The location of the Amazon S3 object.

*/ inline const S3Location& GetS3Location() const{ return m_s3Location; } /** *

The location of the Amazon S3 object.

*/ inline void SetS3Location(const S3Location& value) { m_s3Location = value; } /** *

The location of the Amazon S3 object.

*/ inline void SetS3Location(S3Location&& value) { m_s3Location = std::move(value); } /** *

The location of the Amazon S3 object.

*/ inline GenerateChangeSetResult& WithS3Location(const S3Location& value) { SetS3Location(value); return *this;} /** *

The location of the Amazon S3 object.

*/ inline GenerateChangeSetResult& WithS3Location(S3Location&& value) { SetS3Location(std::move(value)); return *this;} private: S3Location m_s3Location; }; } // namespace Model } // namespace SMS } // namespace Aws