Class: Aws::TimestreamWrite::Types::MagneticStoreRejectedDataLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamWrite::Types::MagneticStoreRejectedDataLocation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-timestreamwrite/types.rb
Overview
Note:
When making an API call, you may pass MagneticStoreRejectedDataLocation data as a hash:
{
s3_configuration: {
bucket_name: "S3BucketName",
object_key_prefix: "S3ObjectKeyPrefix",
encryption_option: "SSE_S3", # accepts SSE_S3, SSE_KMS
kms_key_id: "StringValue2048",
},
}
The location to write error reports for records rejected, asynchronously, during magnetic store writes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_configuration ⇒ Types::S3Configuration
Configuration of an S3 location to write error reports for records rejected, asynchronously, during magnetic store writes.
Instance Attribute Details
#s3_configuration ⇒ Types::S3Configuration
Configuration of an S3 location to write error reports for records rejected, asynchronously, during magnetic store writes.
589 590 591 592 593 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 589 class MagneticStoreRejectedDataLocation < Struct.new( :s3_configuration) SENSITIVE = [] include Aws::Structure end |