/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The S3 bucket name and key where code signing saved your signed code
* image.See Also:
AWS
* API Reference
Name of the S3 bucket.
*/ inline const Aws::String& GetBucketName() const{ return m_bucketName; } /** *Name of the S3 bucket.
*/ inline bool BucketNameHasBeenSet() const { return m_bucketNameHasBeenSet; } /** *Name of the S3 bucket.
*/ inline void SetBucketName(const Aws::String& value) { m_bucketNameHasBeenSet = true; m_bucketName = value; } /** *Name of the S3 bucket.
*/ inline void SetBucketName(Aws::String&& value) { m_bucketNameHasBeenSet = true; m_bucketName = std::move(value); } /** *Name of the S3 bucket.
*/ inline void SetBucketName(const char* value) { m_bucketNameHasBeenSet = true; m_bucketName.assign(value); } /** *Name of the S3 bucket.
*/ inline S3SignedObject& WithBucketName(const Aws::String& value) { SetBucketName(value); return *this;} /** *Name of the S3 bucket.
*/ inline S3SignedObject& WithBucketName(Aws::String&& value) { SetBucketName(std::move(value)); return *this;} /** *Name of the S3 bucket.
*/ inline S3SignedObject& WithBucketName(const char* value) { SetBucketName(value); return *this;} /** *Key name that uniquely identifies a signed code image in your bucket.
*/ inline const Aws::String& GetKey() const{ return m_key; } /** *Key name that uniquely identifies a signed code image in your bucket.
*/ inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; } /** *Key name that uniquely identifies a signed code image in your bucket.
*/ inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; } /** *Key name that uniquely identifies a signed code image in your bucket.
*/ inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); } /** *Key name that uniquely identifies a signed code image in your bucket.
*/ inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); } /** *Key name that uniquely identifies a signed code image in your bucket.
*/ inline S3SignedObject& WithKey(const Aws::String& value) { SetKey(value); return *this;} /** *Key name that uniquely identifies a signed code image in your bucket.
*/ inline S3SignedObject& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;} /** *Key name that uniquely identifies a signed code image in your bucket.
*/ inline S3SignedObject& WithKey(const char* value) { SetKey(value); return *this;} private: Aws::String m_bucketName; bool m_bucketNameHasBeenSet = false; Aws::String m_key; bool m_keyHasBeenSet = false; }; } // namespace Model } // namespace signer } // namespace Aws