CfnCRLMixinProps

class aws_cdk.mixins_preview.aws_rolesanywhere.mixins.CfnCRLMixinProps(*, crl_data=None, enabled=None, name=None, tags=None, trust_anchor_arn=None)

Bases: object

Properties for CfnCRLPropsMixin.

Parameters:
  • crl_data (Optional[str]) – The x509 v3 specified certificate revocation list (CRL).

  • enabled (Union[bool, IResolvable, None]) – Specifies whether the certificate revocation list (CRL) is enabled.

  • name (Optional[str]) – The name of the certificate revocation list (CRL).

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – A list of tags to attach to the certificate revocation list (CRL).

  • trust_anchor_arn (Optional[str]) – The ARN of the TrustAnchor the certificate revocation list (CRL) will provide revocation for.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-crl.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_cRLMixin_props = rolesanywhere_mixins.CfnCRLMixinProps(
    crl_data="crlData",
    enabled=False,
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    trust_anchor_arn="trustAnchorArn"
)

Attributes

crl_data

The x509 v3 specified certificate revocation list (CRL).

See:

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

enabled

Specifies whether the certificate revocation list (CRL) is enabled.

See:

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

name

The name of the certificate revocation list (CRL).

See:

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

tags

A list of tags to attach to the certificate revocation list (CRL).

See:

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

trust_anchor_arn

The ARN of the TrustAnchor the certificate revocation list (CRL) will provide revocation for.

See:

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