interface CfnHostMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CodeConnections.CfnHostMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscodeconnections#CfnHostMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.codeconnections.CfnHostMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_codeconnections.CfnHostMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_codeconnections » CfnHostMixinProps |
Properties for CfnHostPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeconnections-host.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codeconnections as codeconnections } from '@aws-cdk/cfn-property-mixins';
const cfnHostMixinProps: codeconnections.CfnHostMixinProps = {
name: 'name',
providerEndpoint: 'providerEndpoint',
providerType: 'providerType',
tags: [{
key: 'key',
value: 'value',
}],
vpcConfiguration: {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
tlsCertificate: 'tlsCertificate',
vpcId: 'vpcId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the host. |
| provider | string | The endpoint of the infrastructure where your provider type is installed. |
| provider | string | The name of the installed provider to be associated with your connection. |
| tags? | Cfn[] | Tags to apply to the host. |
| vpc | IResolvable | Vpc | The VPC configuration provisioned for the host. |
name?
Type:
string
(optional)
The name of the host.
providerEndpoint?
Type:
string
(optional)
The endpoint of the infrastructure where your provider type is installed.
providerType?
Type:
string
(optional)
The name of the installed provider to be associated with your connection.
tags?
Type:
Cfn[]
(optional)
Tags to apply to the host.
vpcConfiguration?
Type:
IResolvable | Vpc
(optional)
The VPC configuration provisioned for the host.

.NET
Go
Java
Python
TypeScript