Class: Aws::Finspace::Types::ChangeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Finspace::Types::ChangeRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-finspace/types.rb
Overview
A list of change request objects.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#change_type ⇒ String
Defines the type of change request.
-
#db_path ⇒ String
Defines the path within the database directory.
-
#s3_path ⇒ String
Defines the S3 path of the source file that is required to add or update files in a database.
Instance Attribute Details
#change_type ⇒ String
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.
146 147 148 149 150 151 152 |
# File 'lib/aws-sdk-finspace/types.rb', line 146 class ChangeRequest < Struct.new( :change_type, :s3_path, :db_path) SENSITIVE = [] include Aws::Structure end |
#db_path ⇒ String
Defines the path within the database directory.
146 147 148 149 150 151 152 |
# File 'lib/aws-sdk-finspace/types.rb', line 146 class ChangeRequest < Struct.new( :change_type, :s3_path, :db_path) SENSITIVE = [] include Aws::Structure end |
#s3_path ⇒ String
Defines the S3 path of the source file that is required to add or update files in a database.
146 147 148 149 150 151 152 |
# File 'lib/aws-sdk-finspace/types.rb', line 146 class ChangeRequest < Struct.new( :change_type, :s3_path, :db_path) SENSITIVE = [] include Aws::Structure end |