CfnConnectorMixinProps

class aws_cdk.mixins_preview.aws_pcaconnectorscep.mixins.CfnConnectorMixinProps(*, certificate_authority_arn=None, mobile_device_management=None, tags=None)

Bases: object

Properties for CfnConnectorPropsMixin.

Parameters:
  • certificate_authority_arn (Optional[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.mixins_preview.aws_pcaconnectorscep import mixins as pcaconnectorscep_mixins

cfn_connector_mixin_props = pcaconnectorscep_mixins.CfnConnectorMixinProps(
    certificate_authority_arn="certificateAuthorityArn",
    mobile_device_management=pcaconnectorscep_mixins.CfnConnectorPropsMixin.MobileDeviceManagementProperty(
        intune=pcaconnectorscep_mixins.CfnConnectorPropsMixin.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