Class: Aws::MachineLearning::Types::UpdateDataSourceInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-machinelearning/types.rb

Overview

Note:

When making an API call, you may pass UpdateDataSourceInput data as a hash:

{
  data_source_id: "EntityId", # required
  data_source_name: "EntityName", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#data_source_idString

The ID assigned to the ‘DataSource` during creation.

Returns:

  • (String)


3752
3753
3754
3755
3756
# File 'lib/aws-sdk-machinelearning/types.rb', line 3752

class UpdateDataSourceInput < Struct.new(
  :data_source_id,
  :data_source_name)
  include Aws::Structure
end

#data_source_nameString

A new user-supplied name or description of the ‘DataSource` that will replace the current description.

Returns:

  • (String)


3752
3753
3754
3755
3756
# File 'lib/aws-sdk-machinelearning/types.rb', line 3752

class UpdateDataSourceInput < Struct.new(
  :data_source_id,
  :data_source_name)
  include Aws::Structure
end