aws-cdk-lib.aws_rolesanywhere.CfnCRLProps

interface CfnCRLProps

LanguageType name
.NETAmazon.CDK.AWS.RolesAnywhere.CfnCRLProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrolesanywhere#CfnCRLProps
Javasoftware.amazon.awscdk.services.rolesanywhere.CfnCRLProps
Pythonaws_cdk.aws_rolesanywhere.CfnCRLProps
TypeScript aws-cdk-lib » aws_rolesanywhere » CfnCRLProps

Properties for defining a CfnCRL.

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

NameTypeDescription
crlDatastringThe x509 v3 specified certificate revocation list (CRL).
namestringThe name of the certificate revocation list (CRL).
enabled?boolean | IResolvableSpecifies whether the certificate revocation list (CRL) is enabled.
tags?CfnTag[]A list of tags to attach to the certificate revocation list (CRL).
trustAnchorArn?stringThe 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: CfnTag[] (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.