Class: Aws::RoboMaker::Types::UploadConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::UploadConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-robomaker/types.rb
Overview
Provides upload configuration information. Files are uploaded from the simulation job to a location you specify.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
A prefix that specifies where files will be uploaded in Amazon S3.
-
#path ⇒ String
Specifies the path of the file(s) to upload.
-
#upload_behavior ⇒ String
Specifies when to upload the files:.
Instance Attribute Details
#name ⇒ String
A prefix that specifies where files will be uploaded in Amazon S3. It is appended to the simulation output location to determine the final path.
For example, if your simulation output location is ‘s3://amzn-s3-demo-bucket` and your upload configuration name is `robot-test`, your files will be uploaded to `s3://amzn-s3-demo-bucket/<simid>/<runid>/robot-test`.
5688 5689 5690 5691 5692 5693 5694 |
# File 'lib/aws-sdk-robomaker/types.rb', line 5688 class UploadConfiguration < Struct.new( :name, :path, :upload_behavior) SENSITIVE = [] include Aws::Structure end |
#path ⇒ String
Specifies the path of the file(s) to upload. Standard Unix glob matching rules are accepted, with the addition of ‘**` as a *super asterisk*. For example, specifying `/var/log/**.log` causes all .log files in the `/var/log` directory tree to be collected. For more examples, see [Glob Library].
5688 5689 5690 5691 5692 5693 5694 |
# File 'lib/aws-sdk-robomaker/types.rb', line 5688 class UploadConfiguration < Struct.new( :name, :path, :upload_behavior) SENSITIVE = [] include Aws::Structure end |
#upload_behavior ⇒ String
Specifies when to upload the files:
UPLOAD_ON_TERMINATE
: Matching files are uploaded once the simulation enters the
`TERMINATING` state. Matching files are not uploaded until all of
your code (including tools) have stopped.
If there is a problem uploading a file, the upload is retried. If
problems persist, no further upload attempts will be made.
UPLOAD_ROLLING_AUTO_REMOVE
: Matching files are uploaded as they are created. They are deleted
after they are uploaded. The specified path is checked every 5
seconds. A final check is made when all of your code (including
tools) have stopped.
5688 5689 5690 5691 5692 5693 5694 |
# File 'lib/aws-sdk-robomaker/types.rb', line 5688 class UploadConfiguration < Struct.new( :name, :path, :upload_behavior) SENSITIVE = [] include Aws::Structure end |