/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies the configuration for experiment logging to Amazon
* S3.See Also:
AWS
* API Reference
The name of the destination bucket.
*/ inline const Aws::String& GetBucketName() const{ return m_bucketName; } /** *The name of the destination bucket.
*/ inline bool BucketNameHasBeenSet() const { return m_bucketNameHasBeenSet; } /** *The name of the destination bucket.
*/ inline void SetBucketName(const Aws::String& value) { m_bucketNameHasBeenSet = true; m_bucketName = value; } /** *The name of the destination bucket.
*/ inline void SetBucketName(Aws::String&& value) { m_bucketNameHasBeenSet = true; m_bucketName = std::move(value); } /** *The name of the destination bucket.
*/ inline void SetBucketName(const char* value) { m_bucketNameHasBeenSet = true; m_bucketName.assign(value); } /** *The name of the destination bucket.
*/ inline ExperimentTemplateS3LogConfigurationInput& WithBucketName(const Aws::String& value) { SetBucketName(value); return *this;} /** *The name of the destination bucket.
*/ inline ExperimentTemplateS3LogConfigurationInput& WithBucketName(Aws::String&& value) { SetBucketName(std::move(value)); return *this;} /** *The name of the destination bucket.
*/ inline ExperimentTemplateS3LogConfigurationInput& WithBucketName(const char* value) { SetBucketName(value); return *this;} /** *The bucket prefix.
*/ inline const Aws::String& GetPrefix() const{ return m_prefix; } /** *The bucket prefix.
*/ inline bool PrefixHasBeenSet() const { return m_prefixHasBeenSet; } /** *The bucket prefix.
*/ inline void SetPrefix(const Aws::String& value) { m_prefixHasBeenSet = true; m_prefix = value; } /** *The bucket prefix.
*/ inline void SetPrefix(Aws::String&& value) { m_prefixHasBeenSet = true; m_prefix = std::move(value); } /** *The bucket prefix.
*/ inline void SetPrefix(const char* value) { m_prefixHasBeenSet = true; m_prefix.assign(value); } /** *The bucket prefix.
*/ inline ExperimentTemplateS3LogConfigurationInput& WithPrefix(const Aws::String& value) { SetPrefix(value); return *this;} /** *The bucket prefix.
*/ inline ExperimentTemplateS3LogConfigurationInput& WithPrefix(Aws::String&& value) { SetPrefix(std::move(value)); return *this;} /** *The bucket prefix.
*/ inline ExperimentTemplateS3LogConfigurationInput& 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 FIS } // namespace Aws