Interface CfnApplicationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:00.389Z")
@Stability(Stable)
public interface CfnApplicationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnApplicationPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.iotfleethub.*;
CfnApplicationMixinProps cfnApplicationMixinProps = CfnApplicationMixinProps.builder()
.applicationDescription("applicationDescription")
.applicationName("applicationName")
.roleArn("roleArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationMixinPropsstatic final classAn implementation forCfnApplicationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringAn optional description of the web application.default StringThe name of the web application.default StringThe 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
-
getApplicationDescription
An optional description of the web application.- See Also:
-
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:
-
getTags
A set of key/value pairs that you can use to manage the web application resource.- See Also:
-
builder
- Returns:
- a
CfnApplicationMixinProps.BuilderofCfnApplicationMixinProps
-