interface CfnPrivateConnectionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnPrivateConnectionProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnPrivateConnectionProps |
Java | software.amazon.awscdk.services.devopsagent.CfnPrivateConnectionProps |
Python | aws_cdk.aws_devopsagent.CfnPrivateConnectionProps |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnPrivateConnectionProps |
Properties for defining a CfnPrivateConnection.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devopsagent as devopsagent } from 'aws-cdk-lib';
const cfnPrivateConnectionProps: devopsagent.CfnPrivateConnectionProps = {
connectionConfiguration: {
selfManaged: {
resourceConfigurationId: 'resourceConfigurationId',
},
serviceManaged: {
hostAddress: 'hostAddress',
vpcId: 'vpcId',
// the properties below are optional
ipAddressType: 'ipAddressType',
ipv4AddressesPerEni: 123,
portRanges: ['portRanges'],
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
},
},
name: 'name',
// the properties below are optional
certificate: 'certificate',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | IResolvable | Connection | The connection configuration, either SelfManaged or ServiceManaged. |
| name | string | Unique name for this Private Connection within the account. |
| certificate? | string | Certificate for the Private Connection. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
connectionConfiguration
Type:
IResolvable | Connection
The connection configuration, either SelfManaged or ServiceManaged.
name
Type:
string
Unique name for this Private Connection within the account.
certificate?
Type:
string
(optional)
Certificate for the Private Connection.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript