CfnTrustStoreMixinProps
- class aws_cdk.mixins_preview.aws_elasticloadbalancingv2.mixins.CfnTrustStoreMixinProps(*, ca_certificates_bundle_s3_bucket=None, ca_certificates_bundle_s3_key=None, ca_certificates_bundle_s3_object_version=None, name=None, tags=None)
Bases:
objectProperties for CfnTrustStorePropsMixin.
- Parameters:
ca_certificates_bundle_s3_bucket (
Optional[str]) – The Amazon S3 bucket for the ca certificates bundle.ca_certificates_bundle_s3_key (
Optional[str]) – The Amazon S3 path for the ca certificates bundle.ca_certificates_bundle_s3_object_version (
Optional[str]) – The Amazon S3 object version for the ca certificates bundle. If undefined the current version is used.name (
Optional[str]) – The name of the trust store.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags to assign to the trust store.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_elasticloadbalancingv2 import mixins as elasticloadbalancingv2_mixins cfn_trust_store_mixin_props = elasticloadbalancingv2_mixins.CfnTrustStoreMixinProps( ca_certificates_bundle_s3_bucket="caCertificatesBundleS3Bucket", ca_certificates_bundle_s3_key="caCertificatesBundleS3Key", ca_certificates_bundle_s3_object_version="caCertificatesBundleS3ObjectVersion", name="name", tags=[CfnTag( key="key", value="value" )] )
Attributes
- ca_certificates_bundle_s3_bucket
The Amazon S3 bucket for the ca certificates bundle.
- ca_certificates_bundle_s3_key
The Amazon S3 path for the ca certificates bundle.
- ca_certificates_bundle_s3_object_version
The Amazon S3 object version for the ca certificates bundle.
If undefined the current version is used.
- name
The name of the trust store.
- tags
The tags to assign to the trust store.