@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2022-12-27T20:28:37.611Z") @Stability(value=Stable) public class CfnSimulationApplication extends CfnResource implements IInspectable
The AWS::RoboMaker::SimulationApplication resource creates an AWS RoboMaker simulation 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.robomaker.*;
CfnSimulationApplication cfnSimulationApplication = CfnSimulationApplication.Builder.create(this, "MyCfnSimulationApplication")
.robotSoftwareSuite(RobotSoftwareSuiteProperty.builder()
.name("name")
// the properties below are optional
.version("version")
.build())
.simulationSoftwareSuite(SimulationSoftwareSuiteProperty.builder()
.name("name")
// the properties below are optional
.version("version")
.build())
// the properties below are optional
.currentRevisionId("currentRevisionId")
.environment("environment")
.name("name")
.renderingEngine(RenderingEngineProperty.builder()
.name("name")
.version("version")
.build())
.sources(List.of(SourceConfigProperty.builder()
.architecture("architecture")
.s3Bucket("s3Bucket")
.s3Key("s3Key")
.build()))
.tags(Map.of(
"tagsKey", "tags"))
.build();
| Modifier and Type | Class and Description |
|---|---|
static class |
CfnSimulationApplication.Builder
A fluent builder for
CfnSimulationApplication. |
static interface |
CfnSimulationApplication.RenderingEngineProperty
Information about a rendering engine.
|
static interface |
CfnSimulationApplication.RobotSoftwareSuiteProperty
Information about a robot software suite.
|
static interface |
CfnSimulationApplication.SimulationSoftwareSuiteProperty
Information about a simulation software suite.
|
static interface |
CfnSimulationApplication.SourceConfigProperty
Information about a source configuration.
|
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$ProxyIConstruct.Jsii$Default| 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 |
|---|---|
|
CfnSimulationApplication(Construct scope,
String id,
CfnSimulationApplicationProps props)
Create a new `AWS::RoboMaker::SimulationApplication`.
|
protected |
CfnSimulationApplication(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnSimulationApplication(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAttrArn()
The Amazon Resource Name (ARN) of the simulation application.
|
String |
getAttrCurrentRevisionId()
The current revision id.
|
protected Map<String,Object> |
getCfnProperties() |
String |
getCurrentRevisionId()
The current revision id.
|
String |
getEnvironment()
The environment of the simulation application.
|
String |
getName()
The name of the simulation application.
|
Object |
getRenderingEngine()
The rendering engine for the simulation application.
|
Object |
getRobotSoftwareSuite()
The robot software suite used by the simulation application.
|
Object |
getSimulationSoftwareSuite()
The simulation software suite used by the simulation application.
|
Object |
getSources()
The sources of the simulation application.
|
TagManager |
getTags()
A map that contains tag keys and tag values that are attached to the simulation application.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setCurrentRevisionId(String value)
The current revision id.
|
void |
setEnvironment(String value)
The environment of the simulation application.
|
void |
setName(String value)
The name of the simulation application.
|
void |
setRenderingEngine(CfnSimulationApplication.RenderingEngineProperty value)
The rendering engine for the simulation application.
|
void |
setRenderingEngine(IResolvable value)
The rendering engine for the simulation application.
|
void |
setRobotSoftwareSuite(CfnSimulationApplication.RobotSoftwareSuiteProperty value)
The robot software suite used by the simulation application.
|
void |
setRobotSoftwareSuite(IResolvable value)
The robot software suite used by the simulation application.
|
void |
setSimulationSoftwareSuite(CfnSimulationApplication.SimulationSoftwareSuiteProperty value)
The simulation software suite used by the simulation application.
|
void |
setSimulationSoftwareSuite(IResolvable value)
The simulation software suite used by the simulation application.
|
void |
setSources(IResolvable value)
The sources of the simulation application.
|
void |
setSources(List<Object> value)
The sources of the simulation application.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdgetNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validatejsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnSimulationApplication(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnSimulationApplication(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnSimulationApplication(@NotNull
Construct scope,
@NotNull
String id,
@NotNull
CfnSimulationApplicationProps 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 getAttrArn()
@Stability(value=Stable) @NotNull public String getAttrCurrentRevisionId()
@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 Object getRobotSoftwareSuite()
@Stability(value=Stable)
public void setRobotSoftwareSuite(@NotNull
IResolvable value)
@Stability(value=Stable)
public void setRobotSoftwareSuite(@NotNull
CfnSimulationApplication.RobotSoftwareSuiteProperty value)
@Stability(value=Stable) @NotNull public Object getSimulationSoftwareSuite()
@Stability(value=Stable)
public void setSimulationSoftwareSuite(@NotNull
IResolvable value)
@Stability(value=Stable)
public void setSimulationSoftwareSuite(@NotNull
CfnSimulationApplication.SimulationSoftwareSuiteProperty value)
@Stability(value=Stable) @Nullable public String getCurrentRevisionId()
@Stability(value=Stable)
public void setCurrentRevisionId(@Nullable
String value)
@Stability(value=Stable) @Nullable public String getEnvironment()
@Stability(value=Stable)
public void setEnvironment(@Nullable
String value)
@Stability(value=Stable) @Nullable public String getName()
@Stability(value=Stable)
public void setName(@Nullable
String value)
@Stability(value=Stable) @Nullable public Object getRenderingEngine()
@Stability(value=Stable)
public void setRenderingEngine(@Nullable
IResolvable value)
@Stability(value=Stable)
public void setRenderingEngine(@Nullable
CfnSimulationApplication.RenderingEngineProperty value)
@Stability(value=Stable) @Nullable public Object getSources()
@Stability(value=Stable)
public void setSources(@Nullable
IResolvable value)
Copyright © 2022. All rights reserved.