/** * 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 Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace CloudFront { namespace Model { /** *

A complex type that controls whether access logs are written for this * streaming distribution.

See Also:

AWS * API Reference

*/ class StreamingLoggingConfig { public: AWS_CLOUDFRONT_API StreamingLoggingConfig(); AWS_CLOUDFRONT_API StreamingLoggingConfig(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_CLOUDFRONT_API StreamingLoggingConfig& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_CLOUDFRONT_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const; /** *

Specifies whether you want CloudFront to save access logs to an Amazon S3 * bucket. If you don't want to enable logging when you create a streaming * distribution or if you want to disable logging for an existing streaming * distribution, specify false for Enabled, and specify * empty Bucket and Prefix elements. If you specify * false for Enabled but you specify values for * Bucket and Prefix, the values are automatically * deleted.

*/ inline bool GetEnabled() const{ return m_enabled; } /** *

Specifies whether you want CloudFront to save access logs to an Amazon S3 * bucket. If you don't want to enable logging when you create a streaming * distribution or if you want to disable logging for an existing streaming * distribution, specify false for Enabled, and specify * empty Bucket and Prefix elements. If you specify * false for Enabled but you specify values for * Bucket and Prefix, the values are automatically * deleted.

*/ inline bool EnabledHasBeenSet() const { return m_enabledHasBeenSet; } /** *

Specifies whether you want CloudFront to save access logs to an Amazon S3 * bucket. If you don't want to enable logging when you create a streaming * distribution or if you want to disable logging for an existing streaming * distribution, specify false for Enabled, and specify * empty Bucket and Prefix elements. If you specify * false for Enabled but you specify values for * Bucket and Prefix, the values are automatically * deleted.

*/ inline void SetEnabled(bool value) { m_enabledHasBeenSet = true; m_enabled = value; } /** *

Specifies whether you want CloudFront to save access logs to an Amazon S3 * bucket. If you don't want to enable logging when you create a streaming * distribution or if you want to disable logging for an existing streaming * distribution, specify false for Enabled, and specify * empty Bucket and Prefix elements. If you specify * false for Enabled but you specify values for * Bucket and Prefix, the values are automatically * deleted.

*/ inline StreamingLoggingConfig& WithEnabled(bool value) { SetEnabled(value); return *this;} /** *

The Amazon S3 bucket to store the access logs in, for example, * myawslogbucket.s3.amazonaws.com.

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

The Amazon S3 bucket to store the access logs in, for example, * myawslogbucket.s3.amazonaws.com.

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

The Amazon S3 bucket to store the access logs in, for example, * myawslogbucket.s3.amazonaws.com.

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

The Amazon S3 bucket to store the access logs in, for example, * myawslogbucket.s3.amazonaws.com.

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

The Amazon S3 bucket to store the access logs in, for example, * myawslogbucket.s3.amazonaws.com.

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

The Amazon S3 bucket to store the access logs in, for example, * myawslogbucket.s3.amazonaws.com.

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

The Amazon S3 bucket to store the access logs in, for example, * myawslogbucket.s3.amazonaws.com.

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

The Amazon S3 bucket to store the access logs in, for example, * myawslogbucket.s3.amazonaws.com.

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

An optional string that you want CloudFront to prefix to the access log * filenames for this streaming distribution, for example, myprefix/. * If you want to enable logging, but you don't want to specify a prefix, you still * must include an empty Prefix element in the Logging * element.

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

An optional string that you want CloudFront to prefix to the access log * filenames for this streaming distribution, for example, myprefix/. * If you want to enable logging, but you don't want to specify a prefix, you still * must include an empty Prefix element in the Logging * element.

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

An optional string that you want CloudFront to prefix to the access log * filenames for this streaming distribution, for example, myprefix/. * If you want to enable logging, but you don't want to specify a prefix, you still * must include an empty Prefix element in the Logging * element.

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

An optional string that you want CloudFront to prefix to the access log * filenames for this streaming distribution, for example, myprefix/. * If you want to enable logging, but you don't want to specify a prefix, you still * must include an empty Prefix element in the Logging * element.

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

An optional string that you want CloudFront to prefix to the access log * filenames for this streaming distribution, for example, myprefix/. * If you want to enable logging, but you don't want to specify a prefix, you still * must include an empty Prefix element in the Logging * element.

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

An optional string that you want CloudFront to prefix to the access log * filenames for this streaming distribution, for example, myprefix/. * If you want to enable logging, but you don't want to specify a prefix, you still * must include an empty Prefix element in the Logging * element.

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

An optional string that you want CloudFront to prefix to the access log * filenames for this streaming distribution, for example, myprefix/. * If you want to enable logging, but you don't want to specify a prefix, you still * must include an empty Prefix element in the Logging * element.

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

An optional string that you want CloudFront to prefix to the access log * filenames for this streaming distribution, for example, myprefix/. * If you want to enable logging, but you don't want to specify a prefix, you still * must include an empty Prefix element in the Logging * element.

*/ inline StreamingLoggingConfig& WithPrefix(const char* value) { SetPrefix(value); return *this;} private: bool m_enabled; bool m_enabledHasBeenSet = false; Aws::String m_bucket; bool m_bucketHasBeenSet = false; Aws::String m_prefix; bool m_prefixHasBeenSet = false; }; } // namespace Model } // namespace CloudFront } // namespace Aws