@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.027Z") @Stability(value=Stable) public interface CfnApplicationProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplicationProps.Builder
A builder for
CfnApplicationProps |
static class |
CfnApplicationProps.Jsii$Proxy
An implementation for
CfnApplicationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplicationProps.Builder |
builder() |
default String |
getApplicationDescription()
An optional description of the web application.
|
String |
getApplicationName()
The name of the web application.
|
String |
getRoleArn()
The ARN of the role that the web application assumes when it interacts with AWS IoT Core .
|
default List<CfnTag> |
getTags()
A set of key/value pairs that you can use to manage the web application resource.
|
@Stability(value=Stable) @NotNull String getApplicationName()
@Stability(value=Stable) @NotNull String getRoleArn()
The name of the role must be in the form
FleetHub_random_string.
Pattern: ^arn:[!-~]+$
@Stability(value=Stable) @Nullable default String getApplicationDescription()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnApplicationProps.Builder builder()
CfnApplicationProps.Builder of CfnApplicationPropsCopyright © 2022. All rights reserved.