interface CfnApplicationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetHub.Mixins.CfnApplicationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleethub/mixins#CfnApplicationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iotfleethub.mixins.CfnApplicationMixinProps |
Python | aws_cdk.mixins_preview.aws_iotfleethub.mixins.CfnApplicationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleethub » mixins » 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 { mixins as iotfleethub_mixins } from '@aws-cdk/mixins-preview/aws-iotfleethub';
const cfnApplicationMixinProps: iotfleethub_mixins.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