interface CfnTrustStoreRevocationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElasticLoadBalancingV2.Mixins.CfnTrustStoreRevocationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticloadbalancingv2/mixins#CfnTrustStoreRevocationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.elasticloadbalancingv2.mixins.CfnTrustStoreRevocationMixinProps |
Python | aws_cdk.mixins_preview.aws_elasticloadbalancingv2.mixins.CfnTrustStoreRevocationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_elasticloadbalancingv2 » mixins » CfnTrustStoreRevocationMixinProps |
Properties for CfnTrustStoreRevocationPropsMixin.
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 cfnTrustStoreRevocationMixinProps: elasticloadbalancingv2_mixins.CfnTrustStoreRevocationMixinProps = {
revocationContents: [{
revocationType: 'revocationType',
s3Bucket: 's3Bucket',
s3Key: 's3Key',
s3ObjectVersion: 's3ObjectVersion',
}],
trustStoreArn: 'trustStoreArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| revocation | IResolvable | (IResolvable | Revocation)[] | The revocation file to add. |
| trust | string | The Amazon Resource Name (ARN) of the trust store. |
revocationContents?
Type:
IResolvable | (IResolvable | Revocation)[]
(optional)
The revocation file to add.
trustStoreArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the trust store.

.NET
Go
Java
Python
TypeScript