interface RegistrationConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnCACertificatePropsMixin.RegistrationConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnCACertificatePropsMixin_RegistrationConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnCACertificatePropsMixin.RegistrationConfigProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnCACertificatePropsMixin.RegistrationConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnCACertificatePropsMixin » RegistrationConfigProperty |
The registration configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const registrationConfigProperty: iot_mixins.CfnCACertificatePropsMixin.RegistrationConfigProperty = {
roleArn: 'roleArn',
templateBody: 'templateBody',
templateName: 'templateName',
};
Properties
| Name | Type | Description |
|---|---|---|
| role | string | The ARN of the role. |
| template | string | The template body. |
| template | string | The name of the provisioning template. |
roleArn?
Type:
string
(optional)
The ARN of the role.
templateBody?
Type:
string
(optional)
The template body.
templateName?
Type:
string
(optional)
The name of the provisioning template.

.NET
Go
Java
Python
TypeScript