Class: Aws::TimestreamWrite::Types::MagneticStoreWriteProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamWrite::Types::MagneticStoreWriteProperties
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-timestreamwrite/types.rb
Overview
Note:
When making an API call, you may pass MagneticStoreWriteProperties data as a hash:
{
enable_magnetic_store_writes: false, # required
magnetic_store_rejected_data_location: {
s3_configuration: {
bucket_name: "S3BucketName",
object_key_prefix: "S3ObjectKeyPrefix",
encryption_option: "SSE_S3", # accepts SSE_S3, SSE_KMS
kms_key_id: "StringValue2048",
},
},
}
The set of properties on a table for configuring magnetic store writes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enable_magnetic_store_writes ⇒ Boolean
A flag to enable magnetic store writes.
-
#magnetic_store_rejected_data_location ⇒ Types::MagneticStoreRejectedDataLocation
The location to write error reports for records rejected asynchronously during magnetic store writes.
Instance Attribute Details
#enable_magnetic_store_writes ⇒ Boolean
A flag to enable magnetic store writes.
624 625 626 627 628 629 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 624 class MagneticStoreWriteProperties < Struct.new( :enable_magnetic_store_writes, :magnetic_store_rejected_data_location) SENSITIVE = [] include Aws::Structure end |
#magnetic_store_rejected_data_location ⇒ Types::MagneticStoreRejectedDataLocation
The location to write error reports for records rejected asynchronously during magnetic store writes.
624 625 626 627 628 629 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 624 class MagneticStoreWriteProperties < Struct.new( :enable_magnetic_store_writes, :magnetic_store_rejected_data_location) SENSITIVE = [] include Aws::Structure end |