CfnClientCertificateMixinProps
- class aws_cdk.mixins_preview.aws_apigateway.mixins.CfnClientCertificateMixinProps(*, description=None, tags=None)
Bases:
objectProperties for CfnClientCertificatePropsMixin.
- Parameters:
description (
Optional[str]) – The description of the client certificate.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The collection of tags. Each tag element is associated with a given resource.
- 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_apigateway import mixins as apigateway_mixins cfn_client_certificate_mixin_props = apigateway_mixins.CfnClientCertificateMixinProps( description="description", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
The description of the client certificate.
- tags
The collection of tags.
Each tag element is associated with a given resource.