Interface CfnApplicationProps
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnApplicationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:29:57.829Z")
@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();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationPropsstatic final classAn implementation forCfnApplicationProps
- 
Method SummaryModifier 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- 
getApplicationNameThe name of the web application.
- 
getRoleArnThe 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:[!-~]+$
- 
getApplicationDescriptionAn optional description of the web application.
- 
getTagsA set of key/value pairs that you can use to manage the web application resource.
- 
builder- Returns:
- a CfnApplicationProps.BuilderofCfnApplicationProps
 
 
-