interface ConnectionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnPrivateConnection.ConnectionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnPrivateConnection_ConnectionConfigurationProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnPrivateConnection.ConnectionConfigurationProperty |
Python | aws_cdk.aws_devopsagent.CfnPrivateConnection.ConnectionConfigurationProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnPrivateConnection » ConnectionConfigurationProperty |
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 connectionConfigurationProperty: devopsagent.CfnPrivateConnection.ConnectionConfigurationProperty = {
selfManaged: {
resourceConfigurationId: 'resourceConfigurationId',
},
serviceManaged: {
hostAddress: 'hostAddress',
vpcId: 'vpcId',
// the properties below are optional
ipAddressType: 'ipAddressType',
ipv4AddressesPerEni: 123,
portRanges: ['portRanges'],
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| self | IResolvable | Self | Configuration for a self-managed Private Connection. |
| service | IResolvable | Service | Configuration for a service-managed Private Connection. |
selfManaged?
Type:
IResolvable | Self
(optional)
Configuration for a self-managed Private Connection.
serviceManaged?
Type:
IResolvable | Service
(optional)
Configuration for a service-managed Private Connection.

.NET
Go
Java
Python
TypeScript