@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.027Z") @Stability(value=Stable) public class CfnApplication extends CfnResource implements IInspectable
Represents a Fleet Hub for AWS IoT Device Management web application.
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.*;
CfnApplication cfnApplication = CfnApplication.Builder.create(this, "MyCfnApplication")
.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 | Class and Description |
|---|---|
static class |
CfnApplication.Builder
A fluent builder for
CfnApplication. |
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnApplication(software.constructs.Construct scope,
String id,
CfnApplicationProps props)
Create a new `AWS::IoTFleetHub::Application`.
|
protected |
CfnApplication(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnApplication(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getApplicationDescription()
An optional description of the web application.
|
String |
getApplicationName()
The name of the web application.
|
String |
getAttrApplicationArn()
The ARN of the web application.
|
Number |
getAttrApplicationCreationDate()
The date (in Unix epoch time) when the web application was created.
|
String |
getAttrApplicationId()
The unique Id of the web application.
|
Number |
getAttrApplicationLastUpdateDate()
The date (in Unix epoch time) when the web application was last updated.
|
String |
getAttrApplicationState()
The current state of the web application.
|
String |
getAttrApplicationUrl()
The URL of the web application.
|
String |
getAttrErrorMessage()
A message that explains any failures included in the applicationState response field.
|
String |
getAttrSsoClientId()
The Id of the single sign-on client that you use to authenticate and authorize users on the web application.
|
protected Map<String,Object> |
getCfnProperties() |
String |
getRoleArn()
The ARN of the role that the web application assumes when it interacts with AWS IoT Core .
|
TagManager |
getTags()
A set of key/value pairs that you can use to manage the web application resource.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setApplicationDescription(String value)
An optional description of the web application.
|
void |
setApplicationName(String value)
The name of the web application.
|
void |
setRoleArn(String value)
The ARN of the role that the web application assumes when it interacts with AWS IoT Core .
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnApplication(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnApplication(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnApplication(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnApplicationProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull public String getAttrApplicationArn()
@Stability(value=Stable) @NotNull public Number getAttrApplicationCreationDate()
@Stability(value=Stable) @NotNull public String getAttrApplicationId()
@Stability(value=Stable) @NotNull public Number getAttrApplicationLastUpdateDate()
@Stability(value=Stable) @NotNull public String getAttrApplicationState()
@Stability(value=Stable) @NotNull public String getAttrApplicationUrl()
@Stability(value=Stable) @NotNull public String getAttrErrorMessage()
This message explains failures in the CreateApplication and DeleteApplication actions.
@Stability(value=Stable) @NotNull public String getAttrSsoClientId()
@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @NotNull public TagManager getTags()
@Stability(value=Stable) @NotNull public String getApplicationName()
@Stability(value=Stable)
public void setApplicationName(@NotNull
String value)
@Stability(value=Stable) @NotNull public String getRoleArn()
The name of the role must be in the form
FleetHub_random_string.
Pattern: ^arn:[!-~]+$
@Stability(value=Stable)
public void setRoleArn(@NotNull
String value)
The name of the role must be in the form
FleetHub_random_string.
Pattern: ^arn:[!-~]+$
@Stability(value=Stable) @Nullable public String getApplicationDescription()
@Stability(value=Stable)
public void setApplicationDescription(@Nullable
String value)
Copyright © 2022. All rights reserved.