Class CfnApplicationProps
Properties for defining a CfnApplication.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IoTFleetHub
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplicationProps : ICfnApplicationProps
Syntax (vb)
Public Class CfnApplicationProps Implements ICfnApplicationProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTFleetHub;
var cfnApplicationProps = new CfnApplicationProps {
ApplicationName = "applicationName",
RoleArn = "roleArn",
// the properties below are optional
ApplicationDescription = "applicationDescription",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnApplicationProps() | Properties for defining a |
Properties
| ApplicationDescription | An optional description of the web application. |
| ApplicationName | The name of the web application. |
| RoleArn | The ARN of the role that the web application assumes when it interacts with AWS IoT Core . |
| Tags | A set of key/value pairs that you can use to manage the web application resource. |
Constructors
CfnApplicationProps()
Properties for defining a CfnApplication.
public CfnApplicationProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTFleetHub;
var cfnApplicationProps = new CfnApplicationProps {
ApplicationName = "applicationName",
RoleArn = "roleArn",
// the properties below are optional
ApplicationDescription = "applicationDescription",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
ApplicationDescription
An optional description of the web application.
public string? ApplicationDescription { get; set; }
Property Value
Remarks
ApplicationName
The name of the web application.
public string ApplicationName { get; set; }
Property Value
Remarks
RoleArn
The ARN of the role that the web application assumes when it interacts with AWS IoT Core .
public string RoleArn { get; set; }
Property Value
Remarks
The name of the role must be in the form <code>FleetHub_random_string</code> .
Pattern: ^arn:[!-~]+$
Tags
A set of key/value pairs that you can use to manage the web application resource.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]