Interface CfnWebApp.EndpointDetailsProperty

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

@Stability(Stable) public static interface CfnWebApp.EndpointDetailsProperty extends software.amazon.jsii.JsiiSerializable
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.transfer.*;
 EndpointDetailsProperty endpointDetailsProperty = EndpointDetailsProperty.builder()
         .vpc(VpcProperty.builder()
                 .securityGroupIds(List.of("securityGroupIds"))
                 .subnetIds(List.of("subnetIds"))
                 .vpcId("vpcId")
                 .build())
         .build();
 

See Also: