CfnClientCertificateProps¶
-
class
aws_cdk.aws_apigateway.
CfnClientCertificateProps
(*, description=None, tags=None)¶ Bases:
object
Properties for defining a
CfnClientCertificate
.- Parameters
description (
Optional
[str
]) – A description of the client certificate.tags (
Optional
[Sequence
[CfnTag
]]) – An array of arbitrary tags (key-value pairs) to associate with the client certificate.
- 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
¶ A description of the client certificate.
An array of arbitrary tags (key-value pairs) to associate with the client certificate.