interface CfnCRLMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RolesAnywhere.CfnCRLMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrolesanywhere#CfnCRLMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.rolesanywhere.CfnCRLMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_rolesanywhere.CfnCRLMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rolesanywhere » CfnCRLMixinProps |
Properties for CfnCRLPropsMixin.
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/cfn-property-mixins';
const cfnCRLMixinProps: rolesanywhere.CfnCRLMixinProps = {
crlData: 'crlData',
enabled: false,
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
trustAnchorArn: 'trustAnchorArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| crl | string | The x509 v3 specified certificate revocation list (CRL). |
| enabled? | boolean | IResolvable | Specifies whether the certificate revocation list (CRL) is enabled. |
| name? | string | The name of the certificate revocation list (CRL). |
| 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
(optional)
The x509 v3 specified certificate revocation list (CRL).
enabled?
Type:
boolean | IResolvable
(optional)
Specifies whether the certificate revocation list (CRL) is enabled.
name?
Type:
string
(optional)
The name of the certificate revocation list (CRL).
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.

.NET
Go
Java
Python
TypeScript