interface TrustStoreRevocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElasticLoadBalancingV2.Mixins.CfnTrustStoreRevocationPropsMixin.TrustStoreRevocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticloadbalancingv2/mixins#CfnTrustStoreRevocationPropsMixin_TrustStoreRevocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.elasticloadbalancingv2.mixins.CfnTrustStoreRevocationPropsMixin.TrustStoreRevocationProperty |
Python | aws_cdk.mixins_preview.aws_elasticloadbalancingv2.mixins.CfnTrustStoreRevocationPropsMixin.TrustStoreRevocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_elasticloadbalancingv2 » mixins » CfnTrustStoreRevocationPropsMixin » TrustStoreRevocationProperty |
Information about a revocation file in use by a trust store.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as elasticloadbalancingv2_mixins } from '@aws-cdk/mixins-preview/aws-elasticloadbalancingv2';
const trustStoreRevocationProperty: elasticloadbalancingv2_mixins.CfnTrustStoreRevocationPropsMixin.TrustStoreRevocationProperty = {
numberOfRevokedEntries: 123,
revocationId: 'revocationId',
revocationType: 'revocationType',
trustStoreArn: 'trustStoreArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| number | number | The number of revoked certificates. |
| revocation | string | The revocation ID of the revocation file. |
| revocation | string | The type of revocation file. |
| trust | string | The Amazon Resource Name (ARN) of the trust store. |
numberOfRevokedEntries?
Type:
number
(optional)
The number of revoked certificates.
revocationId?
Type:
string
(optional)
The revocation ID of the revocation file.
revocationType?
Type:
string
(optional)
The type of revocation file.
trustStoreArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the trust store.

.NET
Go
Java
Python
TypeScript