aws-cdk-lib.aws_iotfleethub.CfnApplicationProps

interface CfnApplicationProps

LanguageType name
.NETAmazon.CDK.AWS.IoTFleetHub.CfnApplicationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotfleethub#CfnApplicationProps
Javasoftware.amazon.awscdk.services.iotfleethub.CfnApplicationProps
Pythonaws_cdk.aws_iotfleethub.CfnApplicationProps
TypeScript aws-cdk-lib » 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 { aws_iotfleethub as iotfleethub } from 'aws-cdk-lib';
const cfnApplicationProps: iotfleethub.CfnApplicationProps = {
  applicationName: 'applicationName',
  roleArn: 'roleArn',

  // the properties below are optional
  applicationDescription: 'applicationDescription',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
applicationNamestringThe name of the web application.
roleArnstringThe ARN of the role that the web application assumes when it interacts with AWS IoT Core .
applicationDescription?stringAn optional description of the web application.
tags?CfnTag[]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: CfnTag[] (optional)

A set of key/value pairs that you can use to manage the web application resource.