interface CfnCRLMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RolesAnywhere.Mixins.CfnCRLMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrolesanywhere/mixins#CfnCRLMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.rolesanywhere.mixins.CfnCRLMixinProps |
Python | aws_cdk.mixins_preview.aws_rolesanywhere.mixins.CfnCRLMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_rolesanywhere » mixins » 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 { mixins as rolesanywhere_mixins } from '@aws-cdk/mixins-preview/aws-rolesanywhere';
const cfnCRLMixinProps: rolesanywhere_mixins.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