interface ClientCertificateReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.APIGateway.ClientCertificateReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsapigateway#ClientCertificateReference |
Java | software.amazon.awscdk.interfaces.apigateway.ClientCertificateReference |
Python | aws_cdk.interfaces.aws_apigateway.ClientCertificateReference |
TypeScript | aws-cdk-lib » interfaces » aws_apigateway » ClientCertificateReference |
A reference to a ClientCertificate resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_apigateway as interfaces_aws_apigateway } from 'aws-cdk-lib/interfaces';
const clientCertificateReference: interfaces_aws_apigateway.ClientCertificateReference = {
clientCertificateId: 'clientCertificateId',
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | The ClientCertificateId of the ClientCertificate resource. |
clientCertificateId
Type:
string
The ClientCertificateId of the ClientCertificate resource.

.NET
Go
Java
Python
TypeScript