CfnVPCEConfigurationProps
- class aws_cdk.aws_devicefarm.CfnVPCEConfigurationProps(*, service_dns_name, vpce_configuration_name, vpce_service_name, tags=None, vpce_configuration_description=None)
Bases:
object
Properties for defining a
CfnVPCEConfiguration
.- Parameters:
service_dns_name (
str
) – The DNS name that Device Farm will use to map to the private service you want to access.vpce_configuration_name (
str
) – The friendly name you give to your VPC endpoint configuration to manage your configurations more easily.vpce_service_name (
str
) – The name of the VPC endpoint service that you want to access from Device Farm. The name follows the formatcom.amazonaws.vpce.us-west-2.vpce-svc-id
.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag in the guide .vpce_configuration_description (
Optional
[str
]) – An optional description that provides details about your VPC endpoint configuration.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_devicefarm as devicefarm cfn_vPCEConfiguration_props = devicefarm.CfnVPCEConfigurationProps( service_dns_name="serviceDnsName", vpce_configuration_name="vpceConfigurationName", vpce_service_name="vpceServiceName", # the properties below are optional tags=[CfnTag( key="key", value="value" )], vpce_configuration_description="vpceConfigurationDescription" )
Attributes
- service_dns_name
The DNS name that Device Farm will use to map to the private service you want to access.
- tags
An array of key-value pairs to apply to this resource.
For more information, see Tag in the guide .
- vpce_configuration_description
An optional description that provides details about your VPC endpoint configuration.
- vpce_configuration_name
The friendly name you give to your VPC endpoint configuration to manage your configurations more easily.
- vpce_service_name
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
.