Class: Aws::TimestreamWrite::Types::S3Configuration
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamWrite::Types::S3Configuration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-timestreamwrite/types.rb
Overview
Note:
When making an API call, you may pass S3Configuration data as a hash:
{
bucket_name: "S3BucketName",
object_key_prefix: "S3ObjectKeyPrefix",
encryption_option: "SSE_S3", # accepts SSE_S3, SSE_KMS
kms_key_id: "StringValue2048",
}
Configuration specifing an S3 location.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_name ⇒ String
>Bucket name of the customer S3 bucket.
-
#encryption_option ⇒ String
Encryption option for the customer s3 location.
-
#kms_key_id ⇒ String
KMS key id for the customer s3 location when encrypting with a KMS managed key.
-
#object_key_prefix ⇒ String
Object key preview for the customer S3 location.
Instance Attribute Details
#bucket_name ⇒ String
>Bucket name of the customer S3 bucket.
1000 1001 1002 1003 1004 1005 1006 1007 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 1000 class S3Configuration < Struct.new( :bucket_name, :object_key_prefix, :encryption_option, :kms_key_id) SENSITIVE = [] include Aws::Structure end |
#encryption_option ⇒ String
Encryption option for the customer s3 location. Options are S3 server side encryption with an S3-managed key or KMS managed key.
1000 1001 1002 1003 1004 1005 1006 1007 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 1000 class S3Configuration < Struct.new( :bucket_name, :object_key_prefix, :encryption_option, :kms_key_id) SENSITIVE = [] include Aws::Structure end |
#kms_key_id ⇒ String
KMS key id for the customer s3 location when encrypting with a KMS managed key.
1000 1001 1002 1003 1004 1005 1006 1007 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 1000 class S3Configuration < Struct.new( :bucket_name, :object_key_prefix, :encryption_option, :kms_key_id) SENSITIVE = [] include Aws::Structure end |
#object_key_prefix ⇒ String
Object key preview for the customer S3 location.
1000 1001 1002 1003 1004 1005 1006 1007 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 1000 class S3Configuration < Struct.new( :bucket_name, :object_key_prefix, :encryption_option, :kms_key_id) SENSITIVE = [] include Aws::Structure end |