CfnClientCertificateProps
- class aws_cdk.aws_apigateway.CfnClientCertificateProps(*, description=None, tags=None)
Bases:
objectProperties for defining a
CfnClientCertificate.- 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.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_apigateway as apigateway cfn_client_certificate_props = apigateway.CfnClientCertificateProps( 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.