interface CfnConnectorMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PCAConnectorAD.CfnConnectorMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspcaconnectorad#CfnConnectorMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.pcaconnectorad.CfnConnectorMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_pcaconnectorad.CfnConnectorMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pcaconnectorad » 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 { aws_pcaconnectorad as pcaconnectorad } from '@aws-cdk/cfn-property-mixins';
const cfnConnectorMixinProps: pcaconnectorad.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