CfnTrustStoreRevocationMixinProps
- class aws_cdk.mixins_preview.aws_elasticloadbalancingv2.mixins.CfnTrustStoreRevocationMixinProps(*, revocation_contents=None, trust_store_arn=None)
Bases:
objectProperties for CfnTrustStoreRevocationPropsMixin.
- 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.mixins_preview.aws_elasticloadbalancingv2 import mixins as elasticloadbalancingv2_mixins cfn_trust_store_revocation_mixin_props = elasticloadbalancingv2_mixins.CfnTrustStoreRevocationMixinProps( revocation_contents=[elasticloadbalancingv2_mixins.CfnTrustStoreRevocationPropsMixin.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.