interface CfnConnectorProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_pcaconnectorad.CfnConnectorProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspcaconnectorad#CfnConnectorProps |
Java | software.amazon.awscdk.services.pcaconnectorad.CfnConnectorProps |
Python | aws_cdk.aws_pcaconnectorad.CfnConnectorProps |
TypeScript | aws-cdk-lib » aws_pcaconnectorad » CfnConnectorProps |
Properties for defining a CfnConnector.
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-lib';
const cfnConnectorProps: pcaconnectorad.CfnConnectorProps = {
certificateAuthorityArn: 'certificateAuthorityArn',
directoryId: 'directoryId',
vpcInformation: {
securityGroupIds: ['securityGroupIds'],
// the properties below are optional
ipAddressType: 'ipAddressType',
},
// the properties below are optional
tags: {
tagsKey: 'tags',
},
};
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. |
| vpc | IResolvable | Vpc | Information of the VPC and security group(s) used with the connector. |
| tags? | { [string]: string } | Metadata assigned to a connector consisting of a key-value pair. |
certificateAuthorityArn
Type:
string
The Amazon Resource Name (ARN) of the certificate authority being used.
directoryId
Type:
string
The identifier of the Active Directory.
vpcInformation
Type:
IResolvable | Vpc
Information of the VPC and security group(s) used with the connector.
tags?
Type:
{ [string]: string }
(optional)
Metadata assigned to a connector consisting of a key-value pair.

.NET
Go
Java
Python
TypeScript