interface CfnVPCEConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DeviceFarm.Mixins.CfnVPCEConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevicefarm/mixins#CfnVPCEConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.devicefarm.mixins.CfnVPCEConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_devicefarm.mixins.CfnVPCEConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_devicefarm » mixins » CfnVPCEConfigurationMixinProps |
Properties for CfnVPCEConfigurationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as devicefarm_mixins } from '@aws-cdk/mixins-preview/aws-devicefarm';
const cfnVPCEConfigurationMixinProps: devicefarm_mixins.CfnVPCEConfigurationMixinProps = {
serviceDnsName: 'serviceDnsName',
tags: [{
key: 'key',
value: 'value',
}],
vpceConfigurationDescription: 'vpceConfigurationDescription',
vpceConfigurationName: 'vpceConfigurationName',
vpceServiceName: 'vpceServiceName',
};
Properties
| Name | Type | Description |
|---|---|---|
| service | string | The DNS name that Device Farm will use to map to the private service you want to access. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| vpce | string | An optional description that provides details about your VPC endpoint configuration. |
| vpce | string | The friendly name you give to your VPC endpoint configuration to manage your configurations more easily. |
| vpce | string | The name of the VPC endpoint service that you want to access from Device Farm. |
serviceDnsName?
Type:
string
(optional)
The DNS name that Device Farm will use to map to the private service you want to access.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag in the guide .
vpceConfigurationDescription?
Type:
string
(optional)
An optional description that provides details about your VPC endpoint configuration.
vpceConfigurationName?
Type:
string
(optional)
The friendly name you give to your VPC endpoint configuration to manage your configurations more easily.
vpceServiceName?
Type:
string
(optional)
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 .

.NET
Go
Java
Python
TypeScript