@Stability(value=Stable)
public static interface CfnDeployment.AccessLogSettingProperty
extends software.amazon.jsii.JsiiSerializable
AccessLogSetting is a property of the StageDescription property type.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.apigateway.*;
AccessLogSettingProperty accessLogSettingProperty = AccessLogSettingProperty.builder()
.destinationArn("destinationArn")
.format("format")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeployment.AccessLogSettingProperty.Builder
A builder for
CfnDeployment.AccessLogSettingProperty |
static class |
CfnDeployment.AccessLogSettingProperty.Jsii$Proxy
An implementation for
CfnDeployment.AccessLogSettingProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeployment.AccessLogSettingProperty.Builder |
builder() |
default String |
getDestinationArn()
The Amazon Resource Name (ARN) of the CloudWatch Logs log group or Kinesis Data Firehose delivery stream to receive access logs.
|
default String |
getFormat()
A single line format of the access logs of data, as specified by selected [$context variables](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-mapping-template-reference.html#context-variable-reference) .
|
@Stability(value=Stable) @Nullable default String getDestinationArn()
If you specify a Kinesis Data Firehose delivery stream, the stream name must begin with amazon-apigateway- .
@Stability(value=Stable) @Nullable default String getFormat()
@Stability(value=Stable) static CfnDeployment.AccessLogSettingProperty.Builder builder()
Copyright © 2022. All rights reserved.