Class: Aws::Finspace::Types::ChangeRequest

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

Overview

A list of change request objects.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#change_typeString

Defines the type of change request. A changeType can have the following values:

  • PUT – Adds or updates files in a database.

  • DELETE – Deletes files in a database.

Returns:

  • (String)


146
147
148
149
150
151
152
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 146

class ChangeRequest < Struct.new(
  :change_type,
  :s3_path,
  :db_path)
  SENSITIVE = []
  include Aws::Structure
end

#db_pathString

Defines the path within the database directory.

Returns:

  • (String)


146
147
148
149
150
151
152
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 146

class ChangeRequest < Struct.new(
  :change_type,
  :s3_path,
  :db_path)
  SENSITIVE = []
  include Aws::Structure
end

#s3_pathString

Defines the S3 path of the source file that is required to add or update files in a database.

Returns:

  • (String)


146
147
148
149
150
151
152
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 146

class ChangeRequest < Struct.new(
  :change_type,
  :s3_path,
  :db_path)
  SENSITIVE = []
  include Aws::Structure
end