CfnTrustAnchorMixinProps

class aws_cdk.mixins_preview.aws_rolesanywhere.mixins.CfnTrustAnchorMixinProps(*, enabled=None, name=None, notification_settings=None, source=None, tags=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-trustanchor.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_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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-trustanchor.html#cfn-rolesanywhere-trustanchor-enabled

name

The name of the trust anchor.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-trustanchor.html#cfn-rolesanywhere-trustanchor-name

notification_settings

A list of notification settings to be associated to the trust anchor.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-trustanchor.html#cfn-rolesanywhere-trustanchor-notificationsettings

source

The trust anchor type and its related certificate data.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-trustanchor.html#cfn-rolesanywhere-trustanchor-source

tags

The tags to attach to the trust anchor.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-trustanchor.html#cfn-rolesanywhere-trustanchor-tags