Interface CfnVerifiedAccessEndpointPropsMixin.RdsOptionsProperty

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

@Stability(Stable) public static interface CfnVerifiedAccessEndpointPropsMixin.RdsOptionsProperty extends software.amazon.jsii.JsiiSerializable
Describes the RDS options for a Verified Access endpoint.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.ec2.*;
 RdsOptionsProperty rdsOptionsProperty = RdsOptionsProperty.builder()
         .port(123)
         .protocol("protocol")
         .rdsDbClusterArn("rdsDbClusterArn")
         .rdsDbInstanceArn("rdsDbInstanceArn")
         .rdsDbProxyArn("rdsDbProxyArn")
         .rdsEndpoint("rdsEndpoint")
         .subnetIds(List.of("subnetIds"))
         .build();
 

See Also: