Interface CfnVPCEConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVPCEConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:02.381Z")
@Stability(Stable)
public interface CfnVPCEConfigurationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnVPCEConfiguration.
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.devicefarm.*;
CfnVPCEConfigurationProps cfnVPCEConfigurationProps = CfnVPCEConfigurationProps.builder()
.serviceDnsName("serviceDnsName")
.vpceConfigurationName("vpceConfigurationName")
.vpceServiceName("vpceServiceName")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.vpceConfigurationDescription("vpceConfigurationDescription")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVPCEConfigurationPropsstatic final classAn implementation forCfnVPCEConfigurationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The DNS name that Device Farm will use to map to the private service you want to access.getTags()An array of key-value pairs to apply to this resource.default StringAn optional description that provides details about your VPC endpoint configuration.The friendly name you give to your VPC endpoint configuration to manage your configurations more easily.The name of the VPC endpoint service that you want to access from Device Farm.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getServiceDnsName
The DNS name that Device Farm will use to map to the private service you want to access.- See Also:
-
getVpceConfigurationName
The friendly name you give to your VPC endpoint configuration to manage your configurations more easily.- See Also:
-
getVpceServiceName
The name of the VPC endpoint service that you want to access from Device Farm.The name follows the format
com.amazonaws.vpce.us-west-2.vpce-svc-id.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag in the guide .
- See Also:
-
getVpceConfigurationDescription
An optional description that provides details about your VPC endpoint configuration.- See Also:
-
builder
- Returns:
- a
CfnVPCEConfigurationProps.BuilderofCfnVPCEConfigurationProps
-