Interface CfnImageBuilder.AccessEndpointProperty

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

@Stability(Stable) public static interface CfnImageBuilder.AccessEndpointProperty extends software.amazon.jsii.JsiiSerializable
Describes an interface VPC endpoint (interface endpoint) that lets you create a private connection between the virtual private cloud (VPC) that you specify and AppStream 2.0. When you specify an interface endpoint for a stack, users of the stack can connect to AppStream 2.0 only through that endpoint. When you specify an interface endpoint for an image builder, administrators can connect to the image builder only through that 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.services.appstream.*;
 AccessEndpointProperty accessEndpointProperty = AccessEndpointProperty.builder()
         .endpointType("endpointType")
         .vpceId("vpceId")
         .build();
 

See Also: