Class: Aws::RoboMaker::Types::CreateRobotApplicationVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::CreateRobotApplicationVersionRequest
- Defined in:
- gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb
Overview
Note:
When making an API call, you may pass CreateRobotApplicationVersionRequest data as a hash:
{
application: "Arn", # required
current_revision_id: "RevisionId",
s3_etags: ["S3Etag"],
image_digest: "ImageDigest",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application ⇒ String
The application information for the robot application.
-
#current_revision_id ⇒ String
The current revision id for the robot application.
-
#image_digest ⇒ String
A SHA256 identifier for the Docker image that you use for your robot application.
-
#s3_etags ⇒ Array<String>
The Amazon S3 identifier for the zip file bundle that you use for your robot application.
Instance Attribute Details
#application ⇒ String
The application information for the robot application.
707 708 709 710 711 712 713 714 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 707 class CreateRobotApplicationVersionRequest < Struct.new( :application, :current_revision_id, :s3_etags, :image_digest) SENSITIVE = [] include Aws::Structure end |
#current_revision_id ⇒ String
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.
707 708 709 710 711 712 713 714 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 707 class CreateRobotApplicationVersionRequest < Struct.new( :application, :current_revision_id, :s3_etags, :image_digest) SENSITIVE = [] include Aws::Structure end |
#image_digest ⇒ String
A SHA256 identifier for the Docker image that you use for your robot application.
707 708 709 710 711 712 713 714 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 707 class CreateRobotApplicationVersionRequest < Struct.new( :application, :current_revision_id, :s3_etags, :image_digest) SENSITIVE = [] include Aws::Structure end |
#s3_etags ⇒ Array<String>
The Amazon S3 identifier for the zip file bundle that you use for your robot application.
707 708 709 710 711 712 713 714 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 707 class CreateRobotApplicationVersionRequest < Struct.new( :application, :current_revision_id, :s3_etags, :image_digest) SENSITIVE = [] include Aws::Structure end |