interface CfnPrivateConnectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsAgent.CfnPrivateConnectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsagent#CfnPrivateConnectionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsagent.CfnPrivateConnectionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_devopsagent.CfnPrivateConnectionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsagent » CfnPrivateConnectionMixinProps |
Properties for CfnPrivateConnectionPropsMixin.
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/cfn-property-mixins';
const cfnPrivateConnectionMixinProps: devopsagent.CfnPrivateConnectionMixinProps = {
certificate: 'certificate',
connectionConfiguration: {
selfManaged: {
resourceConfigurationId: 'resourceConfigurationId',
},
serviceManaged: {
hostAddress: 'hostAddress',
ipAddressType: 'ipAddressType',
ipv4AddressesPerEni: 123,
portRanges: ['portRanges'],
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
vpcId: 'vpcId',
},
},
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate? | string | Certificate for the Private Connection. |
| connection | IResolvable | Connection | The connection configuration, either SelfManaged or ServiceManaged. |
| name? | string | Unique name for this Private Connection within the account. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
certificate?
Type:
string
(optional)
Certificate for the Private Connection.
connectionConfiguration?
Type:
IResolvable | Connection
(optional)
The connection configuration, either SelfManaged or ServiceManaged.
name?
Type:
string
(optional)
Unique name for this Private Connection within the account.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript