interface CACertificateReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoT.CACertificateReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiot#CACertificateReference |
Java | software.amazon.awscdk.interfaces.iot.CACertificateReference |
Python | aws_cdk.interfaces.aws_iot.CACertificateReference |
TypeScript | aws-cdk-lib » interfaces » aws_iot » CACertificateReference |
A reference to a CACertificate resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iot as interfaces_aws_iot } from 'aws-cdk-lib/interfaces';
const cACertificateReference: interfaces_aws_iot.CACertificateReference = {
caCertificateArn: 'caCertificateArn',
caCertificateId: 'caCertificateId',
};
Properties
| Name | Type | Description |
|---|---|---|
| ca | string | The ARN of the CACertificate resource. |
| ca | string | The Id of the CACertificate resource. |
caCertificateArn
Type:
string
The ARN of the CACertificate resource.
caCertificateId
Type:
string
The Id of the CACertificate resource.

.NET
Go
Java
Python
TypeScript