interface CfnCRLProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.RolesAnywhere.CfnCRLProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrolesanywhere#CfnCRLProps |
Java | software.amazon.awscdk.services.rolesanywhere.CfnCRLProps |
Python | aws_cdk.aws_rolesanywhere.CfnCRLProps |
TypeScript | aws-cdk-lib » aws_rolesanywhere » CfnCRLProps |
Properties for defining a CfnCRL
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-crl.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rolesanywhere as rolesanywhere } from 'aws-cdk-lib';
const cfnCRLProps: rolesanywhere.CfnCRLProps = {
crlData: 'crlData',
name: 'name',
// the properties below are optional
enabled: false,
tags: [{
key: 'key',
value: 'value',
}],
trustAnchorArn: 'trustAnchorArn',
};
Properties
Name | Type | Description |
---|---|---|
crl | string | The x509 v3 specified certificate revocation list (CRL). |
name | string | The name of the certificate revocation list (CRL). |
enabled? | boolean | IResolvable | Specifies whether the certificate revocation list (CRL) is enabled. |
tags? | Cfn [] | A list of tags to attach to the certificate revocation list (CRL). |
trust | string | The ARN of the TrustAnchor the certificate revocation list (CRL) will provide revocation for. |
crlData
Type:
string
The x509 v3 specified certificate revocation list (CRL).
name
Type:
string
The name of the certificate revocation list (CRL).
enabled?
Type:
boolean |
IResolvable
(optional)
Specifies whether the certificate revocation list (CRL) is enabled.
tags?
Type:
Cfn
[]
(optional)
A list of tags to attach to the certificate revocation list (CRL).
trustAnchorArn?
Type:
string
(optional)
The ARN of the TrustAnchor the certificate revocation list (CRL) will provide revocation for.