Interface ICfnApplicationProps
Properties for defining a CfnApplication.
Namespace: Amazon.CDK.AWS.IoTFleetHub
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnApplicationProps
Syntax (vb)
Public Interface 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
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. |
Properties
ApplicationDescription
An optional description of the web application.
string? ApplicationDescription { get; }
Property Value
Remarks
ApplicationName
The name of the web application.
string ApplicationName { get; }
Property Value
Remarks
RoleArn
The ARN of the role that the web application assumes when it interacts with AWS IoT Core .
string RoleArn { get; }
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.
ICfnTag[]? Tags { get; }
Property Value
ICfnTag[]