CACertificateReference
- class aws_cdk.aws_iot.CACertificateReference(*, ca_certificate_arn, ca_certificate_id)
Bases:
object
A reference to a CACertificate resource.
- Parameters:
ca_certificate_arn (
str
) – The ARN of the CACertificate resource.ca_certificate_id (
str
) – The Id of the CACertificate resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_iot as iot c_aCertificate_reference = iot.CACertificateReference( ca_certificate_arn="caCertificateArn", ca_certificate_id="caCertificateId" )
Attributes
- ca_certificate_arn
The ARN of the CACertificate resource.
- ca_certificate_id
The Id of the CACertificate resource.