interface CfnClientCertificateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApiGateway.Mixins.CfnClientCertificateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapigateway/mixins#CfnClientCertificateMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.apigateway.mixins.CfnClientCertificateMixinProps |
Python | aws_cdk.mixins_preview.aws_apigateway.mixins.CfnClientCertificateMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_apigateway » mixins » CfnClientCertificateMixinProps |
Properties for CfnClientCertificatePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as apigateway_mixins } from '@aws-cdk/mixins-preview/aws-apigateway';
const cfnClientCertificateMixinProps: apigateway_mixins.CfnClientCertificateMixinProps = {
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the client certificate. |
| tags? | Cfn[] | The collection of tags. |
description?
Type:
string
(optional)
The description of the client certificate.
tags?
Type:
Cfn[]
(optional)
The collection of tags.
Each tag element is associated with a given resource.

.NET
Go
Java
Python
TypeScript