Class: Aws::RoboMaker::Types::DataSourceConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb

Overview

Information about a data source.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#destinationString

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.

Returns:

  • (String)


1600
1601
1602
1603
1604
1605
1606
1607
1608
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1600

class DataSourceConfig < Struct.new(
  :name,
  :s3_bucket,
  :s3_keys,
  :type,
  :destination)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the data source.

Returns:

  • (String)


1600
1601
1602
1603
1604
1605
1606
1607
1608
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1600

class DataSourceConfig < Struct.new(
  :name,
  :s3_bucket,
  :s3_keys,
  :type,
  :destination)
  SENSITIVE = []
  include Aws::Structure
end

#s3_bucketString

The S3 bucket where the data files are located.

Returns:

  • (String)


1600
1601
1602
1603
1604
1605
1606
1607
1608
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1600

class DataSourceConfig < Struct.new(
  :name,
  :s3_bucket,
  :s3_keys,
  :type,
  :destination)
  SENSITIVE = []
  include Aws::Structure
end

#s3_keysArray<String>

The list of S3 keys identifying the data source files.

Returns:

  • (Array<String>)


1600
1601
1602
1603
1604
1605
1606
1607
1608
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1600

class DataSourceConfig < Struct.new(
  :name,
  :s3_bucket,
  :s3_keys,
  :type,
  :destination)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

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.

Returns:

  • (String)


1600
1601
1602
1603
1604
1605
1606
1607
1608
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1600

class DataSourceConfig < Struct.new(
  :name,
  :s3_bucket,
  :s3_keys,
  :type,
  :destination)
  SENSITIVE = []
  include Aws::Structure
end