Class: Aws::TimestreamWrite::Types::MagneticStoreWriteProperties

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#enable_magnetic_store_writesBoolean

A flag to enable magnetic store writes.

Returns:

  • (Boolean)


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_locationTypes::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