/** * 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 ChimeSDKMediaPipelines { namespace Model { /** *

The configuration settings for the S3 bucket.

See Also:

AWS * API Reference

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

The destination URL of the S3 bucket.

*/ inline const Aws::String& GetDestination() const{ return m_destination; } /** *

The destination URL of the S3 bucket.

*/ inline bool DestinationHasBeenSet() const { return m_destinationHasBeenSet; } /** *

The destination URL of the S3 bucket.

*/ inline void SetDestination(const Aws::String& value) { m_destinationHasBeenSet = true; m_destination = value; } /** *

The destination URL of the S3 bucket.

*/ inline void SetDestination(Aws::String&& value) { m_destinationHasBeenSet = true; m_destination = std::move(value); } /** *

The destination URL of the S3 bucket.

*/ inline void SetDestination(const char* value) { m_destinationHasBeenSet = true; m_destination.assign(value); } /** *

The destination URL of the S3 bucket.

*/ inline S3BucketSinkConfiguration& WithDestination(const Aws::String& value) { SetDestination(value); return *this;} /** *

The destination URL of the S3 bucket.

*/ inline S3BucketSinkConfiguration& WithDestination(Aws::String&& value) { SetDestination(std::move(value)); return *this;} /** *

The destination URL of the S3 bucket.

*/ inline S3BucketSinkConfiguration& WithDestination(const char* value) { SetDestination(value); return *this;} private: Aws::String m_destination; bool m_destinationHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKMediaPipelines } // namespace Aws