CfnConnectorMixinProps
- class aws_cdk.mixins_preview.aws_pcaconnectorad.mixins.CfnConnectorMixinProps(*, certificate_authority_arn=None, directory_id=None, tags=None, vpc_information=None)
Bases:
objectProperties 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:
- 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.
- directory_id
The identifier of the Active Directory.
- tags
Metadata assigned to a connector consisting of a key-value pair.
- vpc_information
Information of the VPC and security group(s) used with the connector.