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 configureMobileDeviceManagement
, then the connector is for general-purpose use and this object is empty.tags (
Optional
[Mapping
[str
,str
]]) –
- 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 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.
- 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.