interface CfnHostProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodeConnections.CfnHostProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodeconnections#CfnHostProps |
Java | software.amazon.awscdk.services.codeconnections.CfnHostProps |
Python | aws_cdk.aws_codeconnections.CfnHostProps |
TypeScript | aws-cdk-lib » aws_codeconnections » CfnHostProps |
Properties for defining a CfnHost.
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-lib';
const cfnHostProps: codeconnections.CfnHostProps = {
name: 'name',
providerEndpoint: 'providerEndpoint',
providerType: 'providerType',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
vpcConfiguration: {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
vpcId: 'vpcId',
// the properties below are optional
tlsCertificate: 'tlsCertificate',
},
};
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
The name of the host.
providerEndpoint
Type:
string
The endpoint of the infrastructure where your provider type is installed.
providerType
Type:
string
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