CfnChallengePropsMixin
- class aws_cdk.mixins_preview.aws_pcaconnectorscep.mixins.CfnChallengePropsMixin(props, *, strategy=None)
Bases:
MixinFor general-purpose connectors.
Creates a challenge password for the specified connector. The SCEP protocol uses a challenge password to authenticate a request before issuing a certificate from a certificate authority (CA). Your SCEP clients include the challenge password as part of their certificate request to Connector for SCEP. To retrieve the connector Amazon Resource Names (ARNs) for the connectors in your account, call ListConnectors .
To create additional challenge passwords for the connector, call
CreateChallengeagain. We recommend frequently rotating your challenge passwords.- See:
- CloudformationResource:
AWS::PCAConnectorSCEP::Challenge
- 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_challenge_props_mixin = pcaconnectorscep_mixins.CfnChallengePropsMixin(pcaconnectorscep_mixins.CfnChallengeMixinProps( connector_arn="connectorArn", tags={ "tags_key": "tags" } ), strategy=mixins.PropertyMergeStrategy.OVERRIDE )
Create a mixin to apply properties to
AWS::PCAConnectorSCEP::Challenge.- Parameters:
props (
Union[CfnChallengeMixinProps,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 = ['connectorArn', '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