CfnConnectorMixinProps

class aws_cdk.mixins_preview.aws_pcaconnectorad.mixins.CfnConnectorMixinProps(*, certificate_authority_arn=None, directory_id=None, tags=None, vpc_information=None)

Bases: object

Properties for CfnConnectorPropsMixin.

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

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

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

  • vpc_information (Union[IResolvable, VpcInformationProperty, Dict[str, Any], None]) – 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

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.mixins_preview.aws_pcaconnectorad import mixins as pcaconnectorad_mixins

cfn_connector_mixin_props = pcaconnectorad_mixins.CfnConnectorMixinProps(
    certificate_authority_arn="certificateAuthorityArn",
    directory_id="directoryId",
    tags={
        "tags_key": "tags"
    },
    vpc_information=pcaconnectorad_mixins.CfnConnectorPropsMixin.VpcInformationProperty(
        ip_address_type="ipAddressType",
        security_group_ids=["securityGroupIds"]
    )
)

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