Interface CfnOdbNetwork.StsAccessProperty

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

@Stability(Stable) public static interface CfnOdbNetwork.StsAccessProperty extends software.amazon.jsii.JsiiSerializable
The AWS Security Token Service (STS) access configuration.

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.*;
 StsAccessProperty stsAccessProperty = StsAccessProperty.builder()
         .domainName("domainName")
         .ipv4Addresses(List.of("ipv4Addresses"))
         .status("status")
         .stsPolicyDocument("stsPolicyDocument")
         .build();
 

See Also: