interface TrustStoreRevocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ElasticLoadBalancingV2.CfnTrustStoreRevocationPropsMixin.TrustStoreRevocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awselasticloadbalancingv2#CfnTrustStoreRevocationPropsMixin_TrustStoreRevocationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.elasticloadbalancingv2.CfnTrustStoreRevocationPropsMixin.TrustStoreRevocationProperty |
Python | aws_cdk.cfn_property_mixins.aws_elasticloadbalancingv2.CfnTrustStoreRevocationPropsMixin.TrustStoreRevocationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_elasticloadbalancingv2 » 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 { aws_elasticloadbalancingv2 as elasticloadbalancingv2 } from '@aws-cdk/cfn-property-mixins';
const trustStoreRevocationProperty: elasticloadbalancingv2.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