interface CfnApplicationProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.IoTFleetHub.CfnApplicationProps |
Java | software.amazon.awscdk.services.iotfleethub.CfnApplicationProps |
Python | aws_cdk.aws_iotfleethub.CfnApplicationProps |
TypeScript | @aws-cdk/aws-iotfleethub » CfnApplicationProps |
Properties for defining a CfnApplication
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotfleethub from '@aws-cdk/aws-iotfleethub';
const cfnApplicationProps: iotfleethub.CfnApplicationProps = {
applicationName: 'applicationName',
roleArn: 'roleArn',
// the properties below are optional
applicationDescription: 'applicationDescription',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
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 . |
application | string | An optional description of the web application. |
tags? | Cfn [] | A set of key/value pairs that you can use to manage the web application resource. |
applicationName
Type:
string
The name of the web application.
roleArn
Type:
string
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:[!-~]+$
applicationDescription?
Type:
string
(optional)
An optional description of the web application.
tags?
Type:
Cfn
[]
(optional)
A set of key/value pairs that you can use to manage the web application resource.