CfnConnectorPropsMixin
- class aws_cdk.mixins_preview.aws_pcaconnectorscep.mixins.CfnConnectorPropsMixin(props, *, strategy=None)
Bases:
MixinConnector for SCEP is a service that links AWS Private Certificate Authority to your SCEP-enabled devices.
The connector brokers the exchange of certificates from AWS Private CA to your SCEP-enabled devices and mobile device management systems. The connector is a complex type that contains the connector’s configuration settings.
- See:
- CloudformationResource:
AWS::PCAConnectorSCEP::Connector
- Mixin:
true
- 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 import mixins from aws_cdk.mixins_preview.aws_pcaconnectorscep import mixins as pcaconnectorscep_mixins cfn_connector_props_mixin = pcaconnectorscep_mixins.CfnConnectorPropsMixin(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" } ), strategy=mixins.PropertyMergeStrategy.OVERRIDE )
Create a mixin to apply properties to
AWS::PCAConnectorSCEP::Connector.- Parameters:
props (
Union[CfnConnectorMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['certificateAuthorityArn', 'mobileDeviceManagement', 'tags']
Static Methods
- classmethod is_mixin(x)
(experimental) Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.- Stability:
experimental
IntuneConfigurationProperty
- class CfnConnectorPropsMixin.IntuneConfigurationProperty(*, azure_application_id=None, domain=None)
Bases:
objectContains configuration details for use with Microsoft Intune.
For information about using Connector for SCEP for Microsoft Intune, see Using Connector for SCEP for Microsoft Intune .
When you use Connector for SCEP for Microsoft Intune, certain functionalities are enabled by accessing Microsoft Intune through the Microsoft API. Your use of the Connector for SCEP and accompanying AWS services doesn’t remove your need to have a valid license for your use of the Microsoft Intune service. You should also review the Microsoft Intune® App Protection Policies .
- Parameters:
azure_application_id (
Optional[str]) – The directory (tenant) ID from your Microsoft Entra ID app registration.domain (
Optional[str]) – The primary domain from your Microsoft Entra ID app registration.
- 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_pcaconnectorscep import mixins as pcaconnectorscep_mixins intune_configuration_property = pcaconnectorscep_mixins.CfnConnectorPropsMixin.IntuneConfigurationProperty( azure_application_id="azureApplicationId", domain="domain" )
Attributes
- azure_application_id
The directory (tenant) ID from your Microsoft Entra ID app registration.
- domain
The primary domain from your Microsoft Entra ID app registration.
MobileDeviceManagementProperty
- class CfnConnectorPropsMixin.MobileDeviceManagementProperty(*, intune=None)
Bases:
objectIf you don’t supply a value, by default Connector for SCEP creates a connector for general-purpose use.
A general-purpose connector is designed to work with clients or endpoints that support the SCEP protocol, except Connector for SCEP for Microsoft Intune. For information about considerations and limitations with using Connector for SCEP, see Considerations and Limitations .
If you provide an
IntuneConfiguration, Connector for SCEP creates a connector for use with Microsoft Intune, and you manage the challenge passwords using Microsoft Intune. For more information, see Using Connector for SCEP for Microsoft Intune .- Parameters:
intune (
Union[IResolvable,IntuneConfigurationProperty,Dict[str,Any],None]) –Configuration settings for use with Microsoft Intune. For information about using Connector for SCEP for Microsoft Intune, see Using Connector for SCEP for Microsoft Intune .
- 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_pcaconnectorscep import mixins as pcaconnectorscep_mixins mobile_device_management_property = pcaconnectorscep_mixins.CfnConnectorPropsMixin.MobileDeviceManagementProperty( intune=pcaconnectorscep_mixins.CfnConnectorPropsMixin.IntuneConfigurationProperty( azure_application_id="azureApplicationId", domain="domain" ) )
Attributes
- intune
Configuration settings for use with Microsoft Intune.
For information about using Connector for SCEP for Microsoft Intune, see Using Connector for SCEP for Microsoft Intune .
OpenIdConfigurationProperty
- class CfnConnectorPropsMixin.OpenIdConfigurationProperty(*, audience=None, issuer=None, subject=None)
Bases:
objectContains OpenID Connect (OIDC) parameters for use with Microsoft Intune.
For more information about using Connector for SCEP for Microsoft Intune, see Using Connector for SCEP for Microsoft Intune .
- Parameters:
audience (
Optional[str]) – The audience value to copy into your Microsoft Entra app registration’s OIDC.issuer (
Optional[str]) – The issuer value to copy into your Microsoft Entra app registration’s OIDC.subject (
Optional[str]) – The subject value to copy into your Microsoft Entra app registration’s OIDC.
- 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_pcaconnectorscep import mixins as pcaconnectorscep_mixins open_id_configuration_property = pcaconnectorscep_mixins.CfnConnectorPropsMixin.OpenIdConfigurationProperty( audience="audience", issuer="issuer", subject="subject" )
Attributes
- audience
The audience value to copy into your Microsoft Entra app registration’s OIDC.
- issuer
The issuer value to copy into your Microsoft Entra app registration’s OIDC.
- subject
The subject value to copy into your Microsoft Entra app registration’s OIDC.