interface CfnTrustStoreMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElasticLoadBalancingV2.Mixins.CfnTrustStoreMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticloadbalancingv2/mixins#CfnTrustStoreMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.elasticloadbalancingv2.mixins.CfnTrustStoreMixinProps |
Python | aws_cdk.mixins_preview.aws_elasticloadbalancingv2.mixins.CfnTrustStoreMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_elasticloadbalancingv2 » mixins » CfnTrustStoreMixinProps |
Properties for CfnTrustStorePropsMixin.
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 cfnTrustStoreMixinProps: elasticloadbalancingv2_mixins.CfnTrustStoreMixinProps = {
caCertificatesBundleS3Bucket: 'caCertificatesBundleS3Bucket',
caCertificatesBundleS3Key: 'caCertificatesBundleS3Key',
caCertificatesBundleS3ObjectVersion: 'caCertificatesBundleS3ObjectVersion',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| ca | string | The Amazon S3 bucket for the ca certificates bundle. |
| ca | string | The Amazon S3 path for the ca certificates bundle. |
| ca | string | The Amazon S3 object version for the ca certificates bundle. |
| name? | string | The name of the trust store. |
| tags? | Cfn[] | The tags to assign to the trust store. |
caCertificatesBundleS3Bucket?
Type:
string
(optional)
The Amazon S3 bucket for the ca certificates bundle.
caCertificatesBundleS3Key?
Type:
string
(optional)
The Amazon S3 path for the ca certificates bundle.
caCertificatesBundleS3ObjectVersion?
Type:
string
(optional)
The Amazon S3 object version for the ca certificates bundle.
If undefined the current version is used.
name?
Type:
string
(optional)
The name of the trust store.
tags?
Type:
Cfn[]
(optional)
The tags to assign to the trust store.

.NET
Go
Java
Python
TypeScript