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