/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides a description of Amazon CloudWatch logging options, including the
* log stream Amazon Resource Name (ARN). See Also:
AWS
* API Reference
The ARN of the CloudWatch log to receive application messages.
*/ inline const Aws::String& GetLogStreamARN() const{ return m_logStreamARN; } /** *The ARN of the CloudWatch log to receive application messages.
*/ inline bool LogStreamARNHasBeenSet() const { return m_logStreamARNHasBeenSet; } /** *The ARN of the CloudWatch log to receive application messages.
*/ inline void SetLogStreamARN(const Aws::String& value) { m_logStreamARNHasBeenSet = true; m_logStreamARN = value; } /** *The ARN of the CloudWatch log to receive application messages.
*/ inline void SetLogStreamARN(Aws::String&& value) { m_logStreamARNHasBeenSet = true; m_logStreamARN = std::move(value); } /** *The ARN of the CloudWatch log to receive application messages.
*/ inline void SetLogStreamARN(const char* value) { m_logStreamARNHasBeenSet = true; m_logStreamARN.assign(value); } /** *The ARN of the CloudWatch log to receive application messages.
*/ inline CloudWatchLoggingOption& WithLogStreamARN(const Aws::String& value) { SetLogStreamARN(value); return *this;} /** *The ARN of the CloudWatch log to receive application messages.
*/ inline CloudWatchLoggingOption& WithLogStreamARN(Aws::String&& value) { SetLogStreamARN(std::move(value)); return *this;} /** *The ARN of the CloudWatch log to receive application messages.
*/ inline CloudWatchLoggingOption& WithLogStreamARN(const char* value) { SetLogStreamARN(value); return *this;} private: Aws::String m_logStreamARN; bool m_logStreamARNHasBeenSet; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws