interface TrustStoreRevocationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElasticLoadBalancingV2.TrustStoreRevocationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticloadbalancingv2#TrustStoreRevocationReference |
Java | software.amazon.awscdk.services.elasticloadbalancingv2.TrustStoreRevocationReference |
Python | aws_cdk.aws_elasticloadbalancingv2.TrustStoreRevocationReference |
TypeScript | aws-cdk-lib » aws_elasticloadbalancingv2 » TrustStoreRevocationReference |
A reference to a TrustStoreRevocation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elasticloadbalancingv2 as elbv2 } from 'aws-cdk-lib';
const trustStoreRevocationReference: elbv2.TrustStoreRevocationReference = {
revocationId: 'revocationId',
trustStoreArn: 'trustStoreArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| revocation | string | The RevocationId of the TrustStoreRevocation resource. |
| trust | string | The TrustStoreArn of the TrustStoreRevocation resource. |
revocationId
Type:
string
The RevocationId of the TrustStoreRevocation resource.
trustStoreArn
Type:
string
The TrustStoreArn of the TrustStoreRevocation resource.

.NET
Go
Java
Python
TypeScript