interface RevocationContentProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElasticLoadBalancingV2.Mixins.CfnTrustStoreRevocationPropsMixin.RevocationContentProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticloadbalancingv2/mixins#CfnTrustStoreRevocationPropsMixin_RevocationContentProperty |
Java | software.amazon.awscdk.mixins.preview.services.elasticloadbalancingv2.mixins.CfnTrustStoreRevocationPropsMixin.RevocationContentProperty |
Python | aws_cdk.mixins_preview.aws_elasticloadbalancingv2.mixins.CfnTrustStoreRevocationPropsMixin.RevocationContentProperty |
TypeScript | @aws-cdk/mixins-preview » aws_elasticloadbalancingv2 » mixins » CfnTrustStoreRevocationPropsMixin » RevocationContentProperty |
Information about a revocation file.
You must specify S3Bucket and S3Key .
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 revocationContentProperty: elasticloadbalancingv2_mixins.CfnTrustStoreRevocationPropsMixin.RevocationContentProperty = {
revocationType: 'revocationType',
s3Bucket: 's3Bucket',
s3Key: 's3Key',
s3ObjectVersion: 's3ObjectVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| revocation | string | The type of revocation file. |
| s3 | string | The Amazon S3 bucket for the revocation file. |
| s3 | string | The Amazon S3 path for the revocation file. |
| s3 | string | The Amazon S3 object version of the revocation file. |
revocationType?
Type:
string
(optional)
The type of revocation file.
s3Bucket?
Type:
string
(optional)
The Amazon S3 bucket for the revocation file.
s3Key?
Type:
string
(optional)
The Amazon S3 path for the revocation file.
s3ObjectVersion?
Type:
string
(optional)
The Amazon S3 object version of the revocation file.

.NET
Go
Java
Python
TypeScript