/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SSM { namespace Model { /** *

The URL of S3 bucket where you want to store the results of this * request.

See Also:

AWS * API Reference

*/ class InstanceAssociationOutputUrl { public: AWS_SSM_API InstanceAssociationOutputUrl(); AWS_SSM_API InstanceAssociationOutputUrl(Aws::Utils::Json::JsonView jsonValue); AWS_SSM_API InstanceAssociationOutputUrl& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SSM_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The URL of S3 bucket where you want to store the results of this request.

*/ inline const S3OutputUrl& GetS3OutputUrl() const{ return m_s3OutputUrl; } /** *

The URL of S3 bucket where you want to store the results of this request.

*/ inline bool S3OutputUrlHasBeenSet() const { return m_s3OutputUrlHasBeenSet; } /** *

The URL of S3 bucket where you want to store the results of this request.

*/ inline void SetS3OutputUrl(const S3OutputUrl& value) { m_s3OutputUrlHasBeenSet = true; m_s3OutputUrl = value; } /** *

The URL of S3 bucket where you want to store the results of this request.

*/ inline void SetS3OutputUrl(S3OutputUrl&& value) { m_s3OutputUrlHasBeenSet = true; m_s3OutputUrl = std::move(value); } /** *

The URL of S3 bucket where you want to store the results of this request.

*/ inline InstanceAssociationOutputUrl& WithS3OutputUrl(const S3OutputUrl& value) { SetS3OutputUrl(value); return *this;} /** *

The URL of S3 bucket where you want to store the results of this request.

*/ inline InstanceAssociationOutputUrl& WithS3OutputUrl(S3OutputUrl&& value) { SetS3OutputUrl(std::move(value)); return *this;} private: S3OutputUrl m_s3OutputUrl; bool m_s3OutputUrlHasBeenSet = false; }; } // namespace Model } // namespace SSM } // namespace Aws