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

Amazon S3 Location information for an input manifest file.

See * Also:

AWS * API Reference

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

The Amazon S3 bucket that contains the manifest.

*/ inline const Aws::String& GetBucket() const{ return m_bucket; } /** *

The Amazon S3 bucket that contains the manifest.

*/ inline bool BucketHasBeenSet() const { return m_bucketHasBeenSet; } /** *

The Amazon S3 bucket that contains the manifest.

*/ inline void SetBucket(const Aws::String& value) { m_bucketHasBeenSet = true; m_bucket = value; } /** *

The Amazon S3 bucket that contains the manifest.

*/ inline void SetBucket(Aws::String&& value) { m_bucketHasBeenSet = true; m_bucket = std::move(value); } /** *

The Amazon S3 bucket that contains the manifest.

*/ inline void SetBucket(const char* value) { m_bucketHasBeenSet = true; m_bucket.assign(value); } /** *

The Amazon S3 bucket that contains the manifest.

*/ inline InputS3Object& WithBucket(const Aws::String& value) { SetBucket(value); return *this;} /** *

The Amazon S3 bucket that contains the manifest.

*/ inline InputS3Object& WithBucket(Aws::String&& value) { SetBucket(std::move(value)); return *this;} /** *

The Amazon S3 bucket that contains the manifest.

*/ inline InputS3Object& WithBucket(const char* value) { SetBucket(value); return *this;} /** *

The name and location of the manifest file withiin the bucket.

*/ inline const Aws::String& GetKey() const{ return m_key; } /** *

The name and location of the manifest file withiin the bucket.

*/ inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; } /** *

The name and location of the manifest file withiin the bucket.

*/ inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; } /** *

The name and location of the manifest file withiin the bucket.

*/ inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); } /** *

The name and location of the manifest file withiin the bucket.

*/ inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); } /** *

The name and location of the manifest file withiin the bucket.

*/ inline InputS3Object& WithKey(const Aws::String& value) { SetKey(value); return *this;} /** *

The name and location of the manifest file withiin the bucket.

*/ inline InputS3Object& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;} /** *

The name and location of the manifest file withiin the bucket.

*/ inline InputS3Object& WithKey(const char* value) { SetKey(value); return *this;} /** *

The version ID of the bucket.

*/ inline const Aws::String& GetVersionId() const{ return m_versionId; } /** *

The version ID of the bucket.

*/ inline bool VersionIdHasBeenSet() const { return m_versionIdHasBeenSet; } /** *

The version ID of the bucket.

*/ inline void SetVersionId(const Aws::String& value) { m_versionIdHasBeenSet = true; m_versionId = value; } /** *

The version ID of the bucket.

*/ inline void SetVersionId(Aws::String&& value) { m_versionIdHasBeenSet = true; m_versionId = std::move(value); } /** *

The version ID of the bucket.

*/ inline void SetVersionId(const char* value) { m_versionIdHasBeenSet = true; m_versionId.assign(value); } /** *

The version ID of the bucket.

*/ inline InputS3Object& WithVersionId(const Aws::String& value) { SetVersionId(value); return *this;} /** *

The version ID of the bucket.

*/ inline InputS3Object& WithVersionId(Aws::String&& value) { SetVersionId(std::move(value)); return *this;} /** *

The version ID of the bucket.

*/ inline InputS3Object& WithVersionId(const char* value) { SetVersionId(value); return *this;} private: Aws::String m_bucket; bool m_bucketHasBeenSet = false; Aws::String m_key; bool m_keyHasBeenSet = false; Aws::String m_versionId; bool m_versionIdHasBeenSet = false; }; } // namespace Model } // namespace LookoutforVision } // namespace Aws