CfnCRLProps
- class aws_cdk.aws_rolesanywhere.CfnCRLProps(*, crl_data, name, enabled=None, tags=None, trust_anchor_arn=None)
Bases:
object
Properties for defining a
CfnCRL
.- Parameters:
crl_data (
str
) – The x509 v3 specified certificate revocation list (CRL).name (
str
) – The name of the certificate revocation list (CRL).enabled (
Union
[bool
,IResolvable
,None
]) – Specifies whether the certificate revocation list (CRL) is enabled.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 import aws_rolesanywhere as rolesanywhere cfn_cRLProps = rolesanywhere.CfnCRLProps( crl_data="crlData", name="name", # the properties below are optional enabled=False, tags=[CfnTag( key="key", value="value" )], trust_anchor_arn="trustAnchorArn" )
Attributes
- crl_data
The x509 v3 specified certificate revocation list (CRL).
- enabled
Specifies whether the certificate revocation list (CRL) is enabled.
- name
The name of the certificate revocation list (CRL).
- tags
A list of tags to attach to the certificate revocation list (CRL).
- trust_anchor_arn
The ARN of the TrustAnchor the certificate revocation list (CRL) will provide revocation for.