Interface CfnLoadBalancer.AccessLoggingPolicyProperty

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

@Stability(Stable) public static interface CfnLoadBalancer.AccessLoggingPolicyProperty extends software.amazon.jsii.JsiiSerializable
Specifies where and how access logs are stored for your Classic Load Balancer.

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.elasticloadbalancing.*;
 AccessLoggingPolicyProperty accessLoggingPolicyProperty = AccessLoggingPolicyProperty.builder()
         .enabled(false)
         .s3BucketName("s3BucketName")
         // the properties below are optional
         .emitInterval(123)
         .s3BucketPrefix("s3BucketPrefix")
         .build();
 

See Also: