public static interface CfnStage.AccessLogSettingsProperty
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.apigatewayv2.*; AccessLogSettingsProperty accessLogSettingsProperty = AccessLogSettingsProperty.builder() .destinationArn("destinationArn") .format("format") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnStage.AccessLogSettingsProperty.Builder
A builder for
CfnStage.AccessLogSettingsProperty |
static class |
CfnStage.AccessLogSettingsProperty.Jsii$Proxy
An implementation for
CfnStage.AccessLogSettingsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnStage.AccessLogSettingsProperty.Builder |
builder() |
default java.lang.String |
getDestinationArn()
The ARN of the CloudWatch Logs log group to receive access logs.
|
default java.lang.String |
getFormat()
A single line format of the access logs of data, as specified by selected $context variables.
|
default java.lang.String getDestinationArn()
This parameter is required to enable access logging.
default java.lang.String getFormat()
The format must include at least $context.requestId. This parameter is required to enable access logging.
static CfnStage.AccessLogSettingsProperty.Builder builder()