CfnTrustStoreRevocationProps
- class aws_cdk.aws_elasticloadbalancingv2.CfnTrustStoreRevocationProps(*, revocation_contents=None, trust_store_arn=None)
Bases:
object
Properties for defining a
CfnTrustStoreRevocation
.- Parameters:
revocation_contents (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,RevocationContentProperty
,Dict
[str
,Any
]]],None
]) – The revocation file to add.trust_store_arn (
Optional
[str
]) – The Amazon Resource Name (ARN) of 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_revocation_props = elbv2.CfnTrustStoreRevocationProps( revocation_contents=[elbv2.CfnTrustStoreRevocation.RevocationContentProperty( revocation_type="revocationType", s3_bucket="s3Bucket", s3_key="s3Key", s3_object_version="s3ObjectVersion" )], trust_store_arn="trustStoreArn" )
Attributes
- revocation_contents
The revocation file to add.
- trust_store_arn
The Amazon Resource Name (ARN) of the trust store.