interface VpcInformationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PCAConnectorAD.Mixins.CfnConnectorPropsMixin.VpcInformationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspcaconnectorad/mixins#CfnConnectorPropsMixin_VpcInformationProperty |
Java | software.amazon.awscdk.mixins.preview.services.pcaconnectorad.mixins.CfnConnectorPropsMixin.VpcInformationProperty |
Python | aws_cdk.mixins_preview.aws_pcaconnectorad.mixins.CfnConnectorPropsMixin.VpcInformationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pcaconnectorad » mixins » CfnConnectorPropsMixin » VpcInformationProperty |
Information about your VPC and security groups used with the connector.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pcaconnectorad_mixins } from '@aws-cdk/mixins-preview/aws-pcaconnectorad';
const vpcInformationProperty: pcaconnectorad_mixins.CfnConnectorPropsMixin.VpcInformationProperty = {
ipAddressType: 'ipAddressType',
securityGroupIds: ['securityGroupIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| ip | string | The VPC IP address type. |
| security | string[] | The security groups used with the connector. |
ipAddressType?
Type:
string
(optional)
The VPC IP address type.
securityGroupIds?
Type:
string[]
(optional)
The security groups used with the connector.
You can use a maximum of 4 security groups with a connector.

.NET
Go
Java
Python
TypeScript