interface CfnApplicationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTFleetHub.CfnApplicationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotfleethub#CfnApplicationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotfleethub.CfnApplicationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_iotfleethub.CfnApplicationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotfleethub » CfnApplicationMixinProps |
Properties for CfnApplicationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotfleethub as iotfleethub } from '@aws-cdk/cfn-property-mixins';
const cfnApplicationMixinProps: iotfleethub.CfnApplicationMixinProps = {
applicationDescription: 'applicationDescription',
applicationName: 'applicationName',
roleArn: 'roleArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | An optional description of the web application. |
| application | string | The name of the web application. |
| role | string | The ARN of the role that the web application assumes when it interacts with AWS IoT Core . |
| tags? | Cfn[] | A set of key/value pairs that you can use to manage the web application resource. |
applicationDescription?
Type:
string
(optional)
An optional description of the web application.
applicationName?
Type:
string
(optional)
The name of the web application.
roleArn?
Type:
string
(optional)
The ARN of the role that the web application assumes when it interacts with AWS IoT Core .
The name of the role must be in the form
FleetHub_random_string.
Pattern: ^arn:[!-~]+$
tags?
Type:
Cfn[]
(optional)
A set of key/value pairs that you can use to manage the web application resource.

.NET
Go
Java
Python
TypeScript