CfnConnectorProps

class aws_cdk.aws_pcaconnectorscep.CfnConnectorProps(*, certificate_authority_arn, mobile_device_management=None, tags=None)

Bases: object

Properties for defining a CfnConnector.

Parameters:
  • certificate_authority_arn (str) – The Amazon Resource Name (ARN) of the certificate authority associated with the connector.

  • mobile_device_management (Union[IResolvable, MobileDeviceManagementProperty, Dict[str, Any], None]) – Contains settings relevant to the mobile device management system that you chose for the connector. If you didn’t configure MobileDeviceManagement , then the connector is for general-purpose use and this object is empty.

  • tags (Optional[Mapping[str, str]]) –

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorscep-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_pcaconnectorscep as pcaconnectorscep

cfn_connector_props = pcaconnectorscep.CfnConnectorProps(
    certificate_authority_arn="certificateAuthorityArn",

    # the properties below are optional
    mobile_device_management=pcaconnectorscep.CfnConnector.MobileDeviceManagementProperty(
        intune=pcaconnectorscep.CfnConnector.IntuneConfigurationProperty(
            azure_application_id="azureApplicationId",
            domain="domain"
        )
    ),
    tags={
        "tags_key": "tags"
    }
)

Attributes

certificate_authority_arn

The Amazon Resource Name (ARN) of the certificate authority associated with the connector.

See:

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

mobile_device_management

Contains settings relevant to the mobile device management system that you chose for the connector.

If you didn’t configure MobileDeviceManagement , then the connector is for general-purpose use and this object is empty.

See:

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

tags

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

Type:

see