Interface CfnDeployment.AccessLogSettingProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeployment.AccessLogSettingProperty.Jsii$Proxy
Enclosing class:
CfnDeployment

@Stability(Stable) public static interface CfnDeployment.AccessLogSettingProperty extends software.amazon.jsii.JsiiSerializable
The AccessLogSetting property type specifies settings for logging access in this stage.

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();
 

See Also: