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

Access log settings, including the access log format and access log * destination ARN.

See Also:

AWS * API Reference

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

A single line format of the access logs of data, as specified by selected * $context variables. The format must include at least * $context.requestId.

*/ inline const Aws::String& GetFormat() const{ return m_format; } /** *

A single line format of the access logs of data, as specified by selected * $context variables. The format must include at least * $context.requestId.

*/ inline bool FormatHasBeenSet() const { return m_formatHasBeenSet; } /** *

A single line format of the access logs of data, as specified by selected * $context variables. The format must include at least * $context.requestId.

*/ inline void SetFormat(const Aws::String& value) { m_formatHasBeenSet = true; m_format = value; } /** *

A single line format of the access logs of data, as specified by selected * $context variables. The format must include at least * $context.requestId.

*/ inline void SetFormat(Aws::String&& value) { m_formatHasBeenSet = true; m_format = std::move(value); } /** *

A single line format of the access logs of data, as specified by selected * $context variables. The format must include at least * $context.requestId.

*/ inline void SetFormat(const char* value) { m_formatHasBeenSet = true; m_format.assign(value); } /** *

A single line format of the access logs of data, as specified by selected * $context variables. The format must include at least * $context.requestId.

*/ inline AccessLogSettings& WithFormat(const Aws::String& value) { SetFormat(value); return *this;} /** *

A single line format of the access logs of data, as specified by selected * $context variables. The format must include at least * $context.requestId.

*/ inline AccessLogSettings& WithFormat(Aws::String&& value) { SetFormat(std::move(value)); return *this;} /** *

A single line format of the access logs of data, as specified by selected * $context variables. The format must include at least * $context.requestId.

*/ inline AccessLogSettings& WithFormat(const char* value) { SetFormat(value); return *this;} /** *

The Amazon Resource Name (ARN) of the CloudWatch Logs log group or Kinesis * Data Firehose delivery stream to receive access logs. If you specify a Kinesis * Data Firehose delivery stream, the stream name must begin with * amazon-apigateway-.

*/ inline const Aws::String& GetDestinationArn() const{ return m_destinationArn; } /** *

The Amazon Resource Name (ARN) of the CloudWatch Logs log group or Kinesis * Data Firehose delivery stream to receive access logs. If you specify a Kinesis * Data Firehose delivery stream, the stream name must begin with * amazon-apigateway-.

*/ inline bool DestinationArnHasBeenSet() const { return m_destinationArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the CloudWatch Logs log group or Kinesis * Data Firehose delivery stream to receive access logs. If you specify a Kinesis * Data Firehose delivery stream, the stream name must begin with * amazon-apigateway-.

*/ inline void SetDestinationArn(const Aws::String& value) { m_destinationArnHasBeenSet = true; m_destinationArn = value; } /** *

The Amazon Resource Name (ARN) of the CloudWatch Logs log group or Kinesis * Data Firehose delivery stream to receive access logs. If you specify a Kinesis * Data Firehose delivery stream, the stream name must begin with * amazon-apigateway-.

*/ inline void SetDestinationArn(Aws::String&& value) { m_destinationArnHasBeenSet = true; m_destinationArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the CloudWatch Logs log group or Kinesis * Data Firehose delivery stream to receive access logs. If you specify a Kinesis * Data Firehose delivery stream, the stream name must begin with * amazon-apigateway-.

*/ inline void SetDestinationArn(const char* value) { m_destinationArnHasBeenSet = true; m_destinationArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the CloudWatch Logs log group or Kinesis * Data Firehose delivery stream to receive access logs. If you specify a Kinesis * Data Firehose delivery stream, the stream name must begin with * amazon-apigateway-.

*/ inline AccessLogSettings& WithDestinationArn(const Aws::String& value) { SetDestinationArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the CloudWatch Logs log group or Kinesis * Data Firehose delivery stream to receive access logs. If you specify a Kinesis * Data Firehose delivery stream, the stream name must begin with * amazon-apigateway-.

*/ inline AccessLogSettings& WithDestinationArn(Aws::String&& value) { SetDestinationArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the CloudWatch Logs log group or Kinesis * Data Firehose delivery stream to receive access logs. If you specify a Kinesis * Data Firehose delivery stream, the stream name must begin with * amazon-apigateway-.

*/ inline AccessLogSettings& WithDestinationArn(const char* value) { SetDestinationArn(value); return *this;} private: Aws::String m_format; bool m_formatHasBeenSet = false; Aws::String m_destinationArn; bool m_destinationArnHasBeenSet = false; }; } // namespace Model } // namespace APIGateway } // namespace Aws