CfnSimulationApplicationProps
- class aws_cdk.aws_robomaker.CfnSimulationApplicationProps(*, robot_software_suite, simulation_software_suite, current_revision_id=None, environment=None, name=None, rendering_engine=None, sources=None, tags=None)
Bases:
object
Properties for defining a
CfnSimulationApplication
.- Parameters:
robot_software_suite (
Union
[IResolvable
,RobotSoftwareSuiteProperty
,Dict
[str
,Any
]]) – The robot software suite used by the simulation application.simulation_software_suite (
Union
[IResolvable
,SimulationSoftwareSuiteProperty
,Dict
[str
,Any
]]) – The simulation software suite used by the simulation application.current_revision_id (
Optional
[str
]) – The current revision id.environment (
Optional
[str
]) – The environment of the simulation application.name (
Optional
[str
]) – The name of the simulation application.rendering_engine (
Union
[IResolvable
,RenderingEngineProperty
,Dict
[str
,Any
],None
]) – The rendering engine for the simulation application.sources (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,SourceConfigProperty
,Dict
[str
,Any
]]],None
]) – The sources of the simulation application.tags (
Optional
[Mapping
[str
,str
]]) – A map that contains tag keys and tag values that are attached to the simulation application.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_robomaker as robomaker cfn_simulation_application_props = robomaker.CfnSimulationApplicationProps( robot_software_suite=robomaker.CfnSimulationApplication.RobotSoftwareSuiteProperty( name="name", # the properties below are optional version="version" ), simulation_software_suite=robomaker.CfnSimulationApplication.SimulationSoftwareSuiteProperty( name="name", # the properties below are optional version="version" ), # the properties below are optional current_revision_id="currentRevisionId", environment="environment", name="name", rendering_engine=robomaker.CfnSimulationApplication.RenderingEngineProperty( name="name", version="version" ), sources=[robomaker.CfnSimulationApplication.SourceConfigProperty( architecture="architecture", s3_bucket="s3Bucket", s3_key="s3Key" )], tags={ "tags_key": "tags" } )
Attributes
- current_revision_id
The current revision id.
- environment
The environment of the simulation application.
- name
The name of the simulation application.
- rendering_engine
The rendering engine for the simulation application.
- robot_software_suite
The robot software suite used by the simulation application.
- simulation_software_suite
The simulation software suite used by the simulation application.
- sources
The sources of the simulation application.
- tags
A map that contains tag keys and tag values that are attached to the simulation application.