CfnConnectorProps

class aws_cdk.aws_pcaconnectorad.CfnConnectorProps(*, certificate_authority_arn, directory_id, vpc_information, tags=None)

Bases: object

Properties for defining a CfnConnector.

Parameters:
  • certificate_authority_arn (str) – The Amazon Resource Name (ARN) of the certificate authority being used.

  • directory_id (str) – The identifier of the Active Directory.

  • vpc_information (Union[IResolvable, VpcInformationProperty, Dict[str, Any]]) – Information of the VPC and security group(s) used with the connector.

  • tags (Optional[Mapping[str, str]]) – Metadata assigned to a connector consisting of a key-value pair.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-connector.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_pcaconnectorad as pcaconnectorad

cfn_connector_props = pcaconnectorad.CfnConnectorProps(
    certificate_authority_arn="certificateAuthorityArn",
    directory_id="directoryId",
    vpc_information=pcaconnectorad.CfnConnector.VpcInformationProperty(
        security_group_ids=["securityGroupIds"]
    ),

    # the properties below are optional
    tags={
        "tags_key": "tags"
    }
)

Attributes

certificate_authority_arn

The Amazon Resource Name (ARN) of the certificate authority being used.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-connector.html#cfn-pcaconnectorad-connector-certificateauthorityarn

directory_id

The identifier of the Active Directory.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-connector.html#cfn-pcaconnectorad-connector-directoryid

tags

Metadata assigned to a connector consisting of a key-value pair.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-connector.html#cfn-pcaconnectorad-connector-tags

vpc_information

Information of the VPC and security group(s) used with the connector.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-connector.html#cfn-pcaconnectorad-connector-vpcinformation