interface CfnClientCertificateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ApiGateway.CfnClientCertificateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapigateway#CfnClientCertificateMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.apigateway.CfnClientCertificateMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_apigateway.CfnClientCertificateMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apigateway » 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 { aws_apigateway as apigateway } from '@aws-cdk/cfn-property-mixins';
const cfnClientCertificateMixinProps: apigateway.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