Class CfnSimulationApplication

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.core.CfnElement
software.amazon.awscdk.core.CfnRefElement
software.amazon.awscdk.core.CfnResource
software.amazon.awscdk.services.robomaker.CfnSimulationApplication
All Implemented Interfaces:
software.amazon.awscdk.core.IConstruct, software.amazon.awscdk.core.IDependable, software.amazon.awscdk.core.IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-05-31T18:44:06.826Z") @Stability(Stable) public class CfnSimulationApplication extends software.amazon.awscdk.core.CfnResource implements software.amazon.awscdk.core.IInspectable
A CloudFormation `AWS::RoboMaker::SimulationApplication`.

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();
 
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnSimulationApplication

      protected CfnSimulationApplication(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnSimulationApplication

      protected CfnSimulationApplication(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnSimulationApplication

      @Stability(Stable) public CfnSimulationApplication(@NotNull software.amazon.awscdk.core.Construct scope, @NotNull String id, @NotNull CfnSimulationApplicationProps props)
      Create a new `AWS::RoboMaker::SimulationApplication`.

      Parameters:
      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.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull software.amazon.awscdk.core.TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface software.amazon.awscdk.core.IInspectable
      Parameters:
      inspector - - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class software.amazon.awscdk.core.CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
      The Amazon Resource Name (ARN) of the simulation application.
    • getAttrCurrentRevisionId

      @Stability(Stable) @NotNull public String getAttrCurrentRevisionId()
      The current revision id.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class software.amazon.awscdk.core.CfnResource
    • getTags

      @Stability(Stable) @NotNull public software.amazon.awscdk.core.TagManager getTags()
      A map that contains tag keys and tag values that are attached to the simulation application.
    • getRobotSoftwareSuite

      @Stability(Stable) @NotNull public Object getRobotSoftwareSuite()
      The robot software suite used by the simulation application.
    • setRobotSoftwareSuite

      @Stability(Stable) public void setRobotSoftwareSuite(@NotNull software.amazon.awscdk.core.IResolvable value)
      The robot software suite used by the simulation application.
    • setRobotSoftwareSuite

      @Stability(Stable) public void setRobotSoftwareSuite(@NotNull CfnSimulationApplication.RobotSoftwareSuiteProperty value)
      The robot software suite used by the simulation application.
    • getSimulationSoftwareSuite

      @Stability(Stable) @NotNull public Object getSimulationSoftwareSuite()
      The simulation software suite used by the simulation application.
    • setSimulationSoftwareSuite

      @Stability(Stable) public void setSimulationSoftwareSuite(@NotNull software.amazon.awscdk.core.IResolvable value)
      The simulation software suite used by the simulation application.
    • setSimulationSoftwareSuite

      @Stability(Stable) public void setSimulationSoftwareSuite(@NotNull CfnSimulationApplication.SimulationSoftwareSuiteProperty value)
      The simulation software suite used by the simulation application.
    • getCurrentRevisionId

      @Stability(Stable) @Nullable public String getCurrentRevisionId()
      The current revision id.
    • setCurrentRevisionId

      @Stability(Stable) public void setCurrentRevisionId(@Nullable String value)
      The current revision id.
    • getEnvironment

      @Stability(Stable) @Nullable public String getEnvironment()
      The environment of the simulation application.
    • setEnvironment

      @Stability(Stable) public void setEnvironment(@Nullable String value)
      The environment of the simulation application.
    • getName

      @Stability(Stable) @Nullable public String getName()
      The name of the simulation application.
    • setName

      @Stability(Stable) public void setName(@Nullable String value)
      The name of the simulation application.
    • getRenderingEngine

      @Stability(Stable) @Nullable public Object getRenderingEngine()
      The rendering engine for the simulation application.
    • setRenderingEngine

      @Stability(Stable) public void setRenderingEngine(@Nullable software.amazon.awscdk.core.IResolvable value)
      The rendering engine for the simulation application.
    • setRenderingEngine

      @Stability(Stable) public void setRenderingEngine(@Nullable CfnSimulationApplication.RenderingEngineProperty value)
      The rendering engine for the simulation application.
    • getSources

      @Stability(Stable) @Nullable public Object getSources()
      The sources of the simulation application.
    • setSources

      @Stability(Stable) public void setSources(@Nullable software.amazon.awscdk.core.IResolvable value)
      The sources of the simulation application.
    • setSources

      @Stability(Stable) public void setSources(@Nullable List<Object> value)
      The sources of the simulation application.