CfnSimulationApplicationPropsMixin
- class aws_cdk.mixins_preview.aws_robomaker.mixins.CfnSimulationApplicationPropsMixin(props, *, strategy=None)
Bases:
MixinThe
AWS::RoboMaker::SimulationApplicationresource creates an AWS RoboMaker simulation application.- See:
- CloudformationResource:
AWS::RoboMaker::SimulationApplication
- Mixin:
true
- 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 import mixins from aws_cdk.mixins_preview.aws_robomaker import mixins as robomaker_mixins cfn_simulation_application_props_mixin = robomaker_mixins.CfnSimulationApplicationPropsMixin(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" } ), strategy=mixins.PropertyMergeStrategy.OVERRIDE )
Create a mixin to apply properties to
AWS::RoboMaker::SimulationApplication.- Parameters:
props (
Union[CfnSimulationApplicationMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['currentRevisionId', 'environment', 'name', 'renderingEngine', 'robotSoftwareSuite', 'simulationSoftwareSuite', 'sources', 'tags']
Static Methods
- classmethod is_mixin(x)
(experimental) Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.- Stability:
experimental
RenderingEngineProperty
- class CfnSimulationApplicationPropsMixin.RenderingEngineProperty(*, name=None, version=None)
Bases:
objectInformation about a rendering engine.
- Parameters:
name (
Optional[str]) – The name of the rendering engine.version (
Optional[str]) – The version of the rendering engine.
- See:
- 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 rendering_engine_property = robomaker_mixins.CfnSimulationApplicationPropsMixin.RenderingEngineProperty( name="name", version="version" )
Attributes
- name
The name of the rendering engine.
- version
The version of the rendering engine.
RobotSoftwareSuiteProperty
- class CfnSimulationApplicationPropsMixin.RobotSoftwareSuiteProperty(*, name=None, version=None)
Bases:
objectInformation about a robot software suite.
- Parameters:
name (
Optional[str]) – The name of the robot software suite.Generalis the only supported value.version (
Optional[str]) – The version of the robot software suite. Not applicable for General software suite.
- See:
- 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 robot_software_suite_property = robomaker_mixins.CfnSimulationApplicationPropsMixin.RobotSoftwareSuiteProperty( name="name", version="version" )
Attributes
- name
The name of the robot software suite.
Generalis the only supported value.
- version
The version of the robot software suite.
Not applicable for General software suite.
SimulationSoftwareSuiteProperty
- class CfnSimulationApplicationPropsMixin.SimulationSoftwareSuiteProperty(*, name=None, version=None)
Bases:
objectInformation about a simulation software suite.
- Parameters:
name (
Optional[str]) – The name of the simulation software suite.SimulationRuntimeis the only supported value.version (
Optional[str]) – The version of the simulation software suite. Not applicable forSimulationRuntime.
- See:
- 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 simulation_software_suite_property = robomaker_mixins.CfnSimulationApplicationPropsMixin.SimulationSoftwareSuiteProperty( name="name", version="version" )
Attributes
- name
The name of the simulation software suite.
SimulationRuntimeis the only supported value.
- version
The version of the simulation software suite.
Not applicable for
SimulationRuntime.
SourceConfigProperty
- class CfnSimulationApplicationPropsMixin.SourceConfigProperty(*, architecture=None, s3_bucket=None, s3_key=None)
Bases:
objectInformation about a source configuration.
- Parameters:
architecture (
Optional[str]) – The target processor architecture for the application.s3_bucket (
Optional[str]) – The Amazon S3 bucket name.s3_key (
Optional[str]) – The s3 object key.
- See:
- 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 source_config_property = robomaker_mixins.CfnSimulationApplicationPropsMixin.SourceConfigProperty( architecture="architecture", s3_bucket="s3Bucket", s3_key="s3Key" )
Attributes
- architecture
The target processor architecture for the application.
- s3_bucket
The Amazon S3 bucket name.