@Generated(value="jsii-pacmak/1.69.0 (build f656c31)", date="2022-10-20T14:12:13.113Z") @Stability(value=Stable) public interface CfnSimulationApplicationProps 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.robomaker.*;
CfnSimulationApplicationProps cfnSimulationApplicationProps = CfnSimulationApplicationProps.builder()
.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 | Interface and Description |
|---|---|
static class |
CfnSimulationApplicationProps.Builder
A builder for
CfnSimulationApplicationProps |
static class |
CfnSimulationApplicationProps.Jsii$Proxy
An implementation for
CfnSimulationApplicationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnSimulationApplicationProps.Builder |
builder() |
default String |
getCurrentRevisionId()
The current revision id.
|
default String |
getEnvironment()
The environment of the simulation application.
|
default String |
getName()
The name of the simulation application.
|
default 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.
|
default Object |
getSources()
The sources of the simulation application.
|
default Map<String,String> |
getTags()
A map that contains tag keys and tag values that are attached to the simulation application.
|
@Stability(value=Stable) @NotNull Object getRobotSoftwareSuite()
@Stability(value=Stable) @NotNull Object getSimulationSoftwareSuite()
@Stability(value=Stable) @Nullable default String getCurrentRevisionId()
@Stability(value=Stable) @Nullable default String getEnvironment()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default Object getRenderingEngine()
@Stability(value=Stable) @Nullable default Object getSources()
@Stability(value=Stable) @Nullable default Map<String,String> getTags()
@Stability(value=Stable) static CfnSimulationApplicationProps.Builder builder()
Copyright © 2022. All rights reserved.