interface CfnThingPrincipalAttachmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnThingPrincipalAttachmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnThingPrincipalAttachmentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnThingPrincipalAttachmentMixinProps |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnThingPrincipalAttachmentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnThingPrincipalAttachmentMixinProps |
Properties for CfnThingPrincipalAttachmentPropsMixin.
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 cfnThingPrincipalAttachmentMixinProps: iot_mixins.CfnThingPrincipalAttachmentMixinProps = {
principal: 'principal',
thingName: 'thingName',
thingPrincipalType: 'thingPrincipalType',
};
Properties
| Name | Type | Description |
|---|---|---|
| principal? | string | The principal, which can be a certificate ARN (as returned from the CreateCertificate operation) or an Amazon Cognito ID. |
| thing | string | The name of the AWS IoT thing. |
| thing | string |
principal?
Type:
string
(optional)
The principal, which can be a certificate ARN (as returned from the CreateCertificate operation) or an Amazon Cognito ID.
thingName?
Type:
string
(optional)
The name of the AWS IoT thing.
thingPrincipalType?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript