CfnSimulationApplicationMixinProps

class aws_cdk.mixins_preview.aws_robomaker.mixins.CfnSimulationApplicationMixinProps(*, current_revision_id=None, environment=None, name=None, rendering_engine=None, robot_software_suite=None, simulation_software_suite=None, sources=None, tags=None)

Bases: object

Properties for CfnSimulationApplicationPropsMixin.

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

  • robot_software_suite (Union[IResolvable, RobotSoftwareSuiteProperty, Dict[str, Any], None]) – The robot software suite used by the simulation application.

  • simulation_software_suite (Union[IResolvable, SimulationSoftwareSuiteProperty, Dict[str, Any], None]) – The simulation software suite used by 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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_robomaker import mixins as robomaker_mixins

cfn_simulation_application_mixin_props = robomaker_mixins.CfnSimulationApplicationMixinProps(
    current_revision_id="currentRevisionId",
    environment="environment",
    name="name",
    rendering_engine=robomaker_mixins.CfnSimulationApplicationPropsMixin.RenderingEngineProperty(
        name="name",
        version="version"
    ),
    robot_software_suite=robomaker_mixins.CfnSimulationApplicationPropsMixin.RobotSoftwareSuiteProperty(
        name="name",
        version="version"
    ),
    simulation_software_suite=robomaker_mixins.CfnSimulationApplicationPropsMixin.SimulationSoftwareSuiteProperty(
        name="name",
        version="version"
    ),
    sources=[robomaker_mixins.CfnSimulationApplicationPropsMixin.SourceConfigProperty(
        architecture="architecture",
        s3_bucket="s3Bucket",
        s3_key="s3Key"
    )],
    tags={
        "tags_key": "tags"
    }
)

Attributes

current_revision_id

The current revision id.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-currentrevisionid

environment

The environment of the simulation application.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-environment

name

The name of the simulation application.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-name

rendering_engine

The rendering engine for the simulation application.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-renderingengine

robot_software_suite

The robot software suite used by the simulation application.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-robotsoftwaresuite

simulation_software_suite

The simulation software suite used by the simulation application.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite

sources

The sources of the simulation application.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-sources

tags

A map that contains tag keys and tag values that are attached to the simulation application.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-tags