CfnRobotApplicationVersionProps
- class aws_cdk.aws_robomaker.CfnRobotApplicationVersionProps(*, application, current_revision_id=None)
Bases:
object
Properties for defining a
CfnRobotApplicationVersion
.- Parameters:
application (
str
) – The application information for the robot application.current_revision_id (
Optional
[str
]) – The current revision id for the robot application. If you provide a value and it matches the latest revision ID, a new version will be created.
- 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_robot_application_version_props = robomaker.CfnRobotApplicationVersionProps( application="application", # the properties below are optional current_revision_id="currentRevisionId" )
Attributes
- application
The application information for the robot application.
- current_revision_id
The current revision id for the robot application.
If you provide a value and it matches the latest revision ID, a new version will be created.