public static interface UploadConfiguration.Builder extends SdkPojo, CopyableBuilder<UploadConfiguration.Builder,UploadConfiguration>
| Modifier and Type | Method and Description |
|---|---|
UploadConfiguration.Builder |
name(String name)
A prefix that specifies where files will be uploaded in Amazon S3.
|
UploadConfiguration.Builder |
path(String path)
Specifies the path of the file(s) to upload.
|
UploadConfiguration.Builder |
uploadBehavior(String uploadBehavior)
Specifies when to upload the files:
|
UploadConfiguration.Builder |
uploadBehavior(UploadBehavior uploadBehavior)
Specifies when to upload the files:
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildUploadConfiguration.Builder name(String name)
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://my-bucket and your upload configuration
name is robot-test, your files will be uploaded to
s3://my-bucket/<simid>/<runid>/robot-test.
name - 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://my-bucket and your upload
configuration name is robot-test, your files will be uploaded to
s3://my-bucket/<simid>/<runid>/robot-test.
UploadConfiguration.Builder path(String path)
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.
path - 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.UploadConfiguration.Builder uploadBehavior(String uploadBehavior)
Specifies when to upload the files:
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.
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.
uploadBehavior - Specifies when to upload the files:
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.
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.
UploadBehavior,
UploadBehaviorUploadConfiguration.Builder uploadBehavior(UploadBehavior uploadBehavior)
Specifies when to upload the files:
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.
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.
uploadBehavior - Specifies when to upload the files:
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.
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.
UploadBehavior,
UploadBehaviorCopyright © 2023. All rights reserved.