Interface CfnOdbNetwork.S3AccessProperty

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

@Stability(Stable) public static interface CfnOdbNetwork.S3AccessProperty extends software.amazon.jsii.JsiiSerializable
The configuration for Amazon S3 access from the ODB network.

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.odb.*;
 S3AccessProperty s3AccessProperty = S3AccessProperty.builder()
         .domainName("domainName")
         .ipv4Addresses(List.of("ipv4Addresses"))
         .s3PolicyDocument("s3PolicyDocument")
         .status("status")
         .build();
 

See Also: