Interface CfnApplicationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:40.320Z")
@Stability(Stable)
public interface CfnApplicationProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.iotfleethub.*;
CfnApplicationProps cfnApplicationProps = CfnApplicationProps.builder()
.applicationName("applicationName")
.roleArn("roleArn")
// the properties below are optional
.applicationDescription("applicationDescription")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationPropsstatic final classAn implementation forCfnApplicationProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnApplicationProps.Builderbuilder()default StringAn optional description of the web application.The name of the web application.The ARN of the role that the web application assumes when it interacts with AWS IoT Core .getTags()A set of key/value pairs that you can use to manage the web application resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationName
The name of the web application.- See Also:
-
getRoleArn
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:[!-~]+$- See Also:
-
getApplicationDescription
An optional description of the web application.- See Also:
-
getTags
A set of key/value pairs that you can use to manage the web application resource.- See Also:
-
builder
- Returns:
- a
CfnApplicationProps.BuilderofCfnApplicationProps
-