CfnTrustAnchorMixinProps
- class aws_cdk.mixins_preview.aws_rolesanywhere.mixins.CfnTrustAnchorMixinProps(*, enabled=None, name=None, notification_settings=None, source=None, tags=None)
Bases:
objectProperties for CfnTrustAnchorPropsMixin.
- Parameters:
enabled (
Union[bool,IResolvable,None]) – Indicates whether the trust anchor is enabled.name (
Optional[str]) – The name of the trust anchor.notification_settings (
Union[IResolvable,Sequence[Union[IResolvable,NotificationSettingProperty,Dict[str,Any]]],None]) – A list of notification settings to be associated to the trust anchor.source (
Union[IResolvable,SourceProperty,Dict[str,Any],None]) – The trust anchor type and its related certificate data.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags to attach to the trust anchor.
- 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_rolesanywhere import mixins as rolesanywhere_mixins cfn_trust_anchor_mixin_props = rolesanywhere_mixins.CfnTrustAnchorMixinProps( enabled=False, name="name", notification_settings=[rolesanywhere_mixins.CfnTrustAnchorPropsMixin.NotificationSettingProperty( channel="channel", enabled=False, event="event", threshold=123 )], source=rolesanywhere_mixins.CfnTrustAnchorPropsMixin.SourceProperty( source_data=rolesanywhere_mixins.CfnTrustAnchorPropsMixin.SourceDataProperty( acm_pca_arn="acmPcaArn", x509_certificate_data="x509CertificateData" ), source_type="sourceType" ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- enabled
Indicates whether the trust anchor is enabled.
- name
The name of the trust anchor.
- notification_settings
A list of notification settings to be associated to the trust anchor.
- source
The trust anchor type and its related certificate data.
- tags
The tags to attach to the trust anchor.