interface CfnConnectorMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PCAConnectorAD.Mixins.CfnConnectorMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspcaconnectorad/mixins#CfnConnectorMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.pcaconnectorad.mixins.CfnConnectorMixinProps |
Python | aws_cdk.mixins_preview.aws_pcaconnectorad.mixins.CfnConnectorMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_pcaconnectorad » mixins » CfnConnectorMixinProps |
Properties for CfnConnectorPropsMixin.
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 cfnConnectorMixinProps: pcaconnectorad_mixins.CfnConnectorMixinProps = {
certificateAuthorityArn: 'certificateAuthorityArn',
directoryId: 'directoryId',
tags: {
tagsKey: 'tags',
},
vpcInformation: {
ipAddressType: 'ipAddressType',
securityGroupIds: ['securityGroupIds'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | The Amazon Resource Name (ARN) of the certificate authority being used. |
| directory | string | The identifier of the Active Directory. |
| tags? | { [string]: string } | Metadata assigned to a connector consisting of a key-value pair. |
| vpc | IResolvable | Vpc | Information of the VPC and security group(s) used with the connector. |
certificateAuthorityArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the certificate authority being used.
directoryId?
Type:
string
(optional)
The identifier of the Active Directory.
tags?
Type:
{ [string]: string }
(optional)
Metadata assigned to a connector consisting of a key-value pair.
vpcInformation?
Type:
IResolvable | Vpc
(optional)
Information of the VPC and security group(s) used with the connector.

.NET
Go
Java
Python
TypeScript