getManagedThingCertificate
abstract suspend fun getManagedThingCertificate(input: GetManagedThingCertificateRequest): GetManagedThingCertificateResponse
Retrieves the certificate PEM for a managed IoT thing.
Samples
fun main() {
//sampleStart
// Get managed thing certificate
val resp = iotManagedIntegrationsClient.getManagedThingCertificate {
identifier = "example-managed-thing-id"
}
//sampleEnd
}