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

Contains information about an Amazon S3 bucket.

See Also:

AWS * API Reference

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

The name of the Amazon S3 bucket.

*/ inline const Aws::String& GetBucketName() const{ return m_bucketName; } /** *

The name of the Amazon S3 bucket.

*/ inline bool BucketNameHasBeenSet() const { return m_bucketNameHasBeenSet; } /** *

The name of the Amazon S3 bucket.

*/ inline void SetBucketName(const Aws::String& value) { m_bucketNameHasBeenSet = true; m_bucketName = value; } /** *

The name of the Amazon S3 bucket.

*/ inline void SetBucketName(Aws::String&& value) { m_bucketNameHasBeenSet = true; m_bucketName = std::move(value); } /** *

The name of the Amazon S3 bucket.

*/ inline void SetBucketName(const char* value) { m_bucketNameHasBeenSet = true; m_bucketName.assign(value); } /** *

The name of the Amazon S3 bucket.

*/ inline S3Bucket& WithBucketName(const Aws::String& value) { SetBucketName(value); return *this;} /** *

The name of the Amazon S3 bucket.

*/ inline S3Bucket& WithBucketName(Aws::String&& value) { SetBucketName(std::move(value)); return *this;} /** *

The name of the Amazon S3 bucket.

*/ inline S3Bucket& WithBucketName(const char* value) { SetBucketName(value); return *this;} /** *

The object key to use.

*/ inline const Aws::String& GetPrefix() const{ return m_prefix; } /** *

The object key to use.

*/ inline bool PrefixHasBeenSet() const { return m_prefixHasBeenSet; } /** *

The object key to use.

*/ inline void SetPrefix(const Aws::String& value) { m_prefixHasBeenSet = true; m_prefix = value; } /** *

The object key to use.

*/ inline void SetPrefix(Aws::String&& value) { m_prefixHasBeenSet = true; m_prefix = std::move(value); } /** *

The object key to use.

*/ inline void SetPrefix(const char* value) { m_prefixHasBeenSet = true; m_prefix.assign(value); } /** *

The object key to use.

*/ inline S3Bucket& WithPrefix(const Aws::String& value) { SetPrefix(value); return *this;} /** *

The object key to use.

*/ inline S3Bucket& WithPrefix(Aws::String&& value) { SetPrefix(std::move(value)); return *this;} /** *

The object key to use.

*/ inline S3Bucket& WithPrefix(const char* value) { SetPrefix(value); return *this;} private: Aws::String m_bucketName; bool m_bucketNameHasBeenSet = false; Aws::String m_prefix; bool m_prefixHasBeenSet = false; }; } // namespace Model } // namespace AppFabric } // namespace Aws