Class: Aws::RoboMaker::Types::DataSourceConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::DataSourceConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-robomaker/types.rb
Overview
Information about a data source.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination ⇒ String
The location where your files are mounted in the container image.
-
#name ⇒ String
The name of the data source.
-
#s3_bucket ⇒ String
The S3 bucket where the data files are located.
-
#s3_keys ⇒ Array<String>
The list of S3 keys identifying the data source files.
-
#type ⇒ String
The data type for the data source that you’re using for your container image or simulation job.
Instance Attribute Details
#destination ⇒ String
The location where your files are mounted in the container image.
If you’ve specified the ‘type` of the data source as an `Archive`, you must provide an Amazon S3 object key to your archive. The object key must point to either a `.zip` or `.tar.gz` file.
If you’ve specified the ‘type` of the data source as a `Prefix`, you provide the Amazon S3 prefix that points to the files that you are using for your data source.
If you’ve specified the ‘type` of the data source as a `File`, you provide the Amazon S3 path to the file that you’re using as your data source.
1596 1597 1598 1599 1600 1601 1602 1603 1604 |
# File 'lib/aws-sdk-robomaker/types.rb', line 1596 class DataSourceConfig < Struct.new( :name, :s3_bucket, :s3_keys, :type, :destination) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the data source.
1596 1597 1598 1599 1600 1601 1602 1603 1604 |
# File 'lib/aws-sdk-robomaker/types.rb', line 1596 class DataSourceConfig < Struct.new( :name, :s3_bucket, :s3_keys, :type, :destination) SENSITIVE = [] include Aws::Structure end |
#s3_bucket ⇒ String
The S3 bucket where the data files are located.
1596 1597 1598 1599 1600 1601 1602 1603 1604 |
# File 'lib/aws-sdk-robomaker/types.rb', line 1596 class DataSourceConfig < Struct.new( :name, :s3_bucket, :s3_keys, :type, :destination) SENSITIVE = [] include Aws::Structure end |
#s3_keys ⇒ Array<String>
The list of S3 keys identifying the data source files.
1596 1597 1598 1599 1600 1601 1602 1603 1604 |
# File 'lib/aws-sdk-robomaker/types.rb', line 1596 class DataSourceConfig < Struct.new( :name, :s3_bucket, :s3_keys, :type, :destination) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The data type for the data source that you’re using for your container image or simulation job. You can use this field to specify whether your data source is an Archive, an Amazon S3 prefix, or a file.
If you don’t specify a field, the default value is ‘File`.
1596 1597 1598 1599 1600 1601 1602 1603 1604 |
# File 'lib/aws-sdk-robomaker/types.rb', line 1596 class DataSourceConfig < Struct.new( :name, :s3_bucket, :s3_keys, :type, :destination) SENSITIVE = [] include Aws::Structure end |