Class: Aws::RoboMaker::Types::CreateSimulationApplicationVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::CreateSimulationApplicationVersionRequest
- Defined in:
- gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb
Overview
When making an API call, you may pass CreateSimulationApplicationVersionRequest 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 simulation application.
-
#current_revision_id ⇒ String
The current revision id for the simulation application.
-
#image_digest ⇒ String
The SHA256 digest used to identify the Docker image URI used to created the simulation application.
-
#s3_etags ⇒ Array<String>
The Amazon S3 eTag identifier for the zip file bundle that you use to create the simulation application.
Instance Attribute Details
#application ⇒ String
The application information for the simulation application.
1018 1019 1020 1021 1022 1023 1024 1025 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1018 class CreateSimulationApplicationVersionRequest < 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 simulation application. If you provide a value and it matches the latest revision ID, a new version will be created.
1018 1019 1020 1021 1022 1023 1024 1025 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1018 class CreateSimulationApplicationVersionRequest < Struct.new( :application, :current_revision_id, :s3_etags, :image_digest) SENSITIVE = [] include Aws::Structure end |
#image_digest ⇒ String
The SHA256 digest used to identify the Docker image URI used to created the simulation application.
1018 1019 1020 1021 1022 1023 1024 1025 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1018 class CreateSimulationApplicationVersionRequest < Struct.new( :application, :current_revision_id, :s3_etags, :image_digest) SENSITIVE = [] include Aws::Structure end |
#s3_etags ⇒ Array<String>
The Amazon S3 eTag identifier for the zip file bundle that you use to create the simulation application.
1018 1019 1020 1021 1022 1023 1024 1025 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1018 class CreateSimulationApplicationVersionRequest < Struct.new( :application, :current_revision_id, :s3_etags, :image_digest) SENSITIVE = [] include Aws::Structure end |