CfnTrustStoreProps
- class aws_cdk.aws_elasticloadbalancingv2.CfnTrustStoreProps(*, ca_certificates_bundle_s3_bucket=None, ca_certificates_bundle_s3_key=None, ca_certificates_bundle_s3_object_version=None, name=None, tags=None)
Bases:
object
Properties for defining a
CfnTrustStore
.- 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 import aws_elasticloadbalancingv2 as elbv2 cfn_trust_store_props = elbv2.CfnTrustStoreProps( 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.