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

The information required to update the S3 base location that holds the * application.

See Also:

AWS * API Reference

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

The updated Amazon Resource Name (ARN) of the S3 bucket.

*/ inline const Aws::String& GetBucketARNUpdate() const{ return m_bucketARNUpdate; } /** *

The updated Amazon Resource Name (ARN) of the S3 bucket.

*/ inline bool BucketARNUpdateHasBeenSet() const { return m_bucketARNUpdateHasBeenSet; } /** *

The updated Amazon Resource Name (ARN) of the S3 bucket.

*/ inline void SetBucketARNUpdate(const Aws::String& value) { m_bucketARNUpdateHasBeenSet = true; m_bucketARNUpdate = value; } /** *

The updated Amazon Resource Name (ARN) of the S3 bucket.

*/ inline void SetBucketARNUpdate(Aws::String&& value) { m_bucketARNUpdateHasBeenSet = true; m_bucketARNUpdate = std::move(value); } /** *

The updated Amazon Resource Name (ARN) of the S3 bucket.

*/ inline void SetBucketARNUpdate(const char* value) { m_bucketARNUpdateHasBeenSet = true; m_bucketARNUpdate.assign(value); } /** *

The updated Amazon Resource Name (ARN) of the S3 bucket.

*/ inline S3ContentBaseLocationUpdate& WithBucketARNUpdate(const Aws::String& value) { SetBucketARNUpdate(value); return *this;} /** *

The updated Amazon Resource Name (ARN) of the S3 bucket.

*/ inline S3ContentBaseLocationUpdate& WithBucketARNUpdate(Aws::String&& value) { SetBucketARNUpdate(std::move(value)); return *this;} /** *

The updated Amazon Resource Name (ARN) of the S3 bucket.

*/ inline S3ContentBaseLocationUpdate& WithBucketARNUpdate(const char* value) { SetBucketARNUpdate(value); return *this;} /** *

The updated S3 bucket path.

*/ inline const Aws::String& GetBasePathUpdate() const{ return m_basePathUpdate; } /** *

The updated S3 bucket path.

*/ inline bool BasePathUpdateHasBeenSet() const { return m_basePathUpdateHasBeenSet; } /** *

The updated S3 bucket path.

*/ inline void SetBasePathUpdate(const Aws::String& value) { m_basePathUpdateHasBeenSet = true; m_basePathUpdate = value; } /** *

The updated S3 bucket path.

*/ inline void SetBasePathUpdate(Aws::String&& value) { m_basePathUpdateHasBeenSet = true; m_basePathUpdate = std::move(value); } /** *

The updated S3 bucket path.

*/ inline void SetBasePathUpdate(const char* value) { m_basePathUpdateHasBeenSet = true; m_basePathUpdate.assign(value); } /** *

The updated S3 bucket path.

*/ inline S3ContentBaseLocationUpdate& WithBasePathUpdate(const Aws::String& value) { SetBasePathUpdate(value); return *this;} /** *

The updated S3 bucket path.

*/ inline S3ContentBaseLocationUpdate& WithBasePathUpdate(Aws::String&& value) { SetBasePathUpdate(std::move(value)); return *this;} /** *

The updated S3 bucket path.

*/ inline S3ContentBaseLocationUpdate& WithBasePathUpdate(const char* value) { SetBasePathUpdate(value); return *this;} private: Aws::String m_bucketARNUpdate; bool m_bucketARNUpdateHasBeenSet = false; Aws::String m_basePathUpdate; bool m_basePathUpdateHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws