Class: Aws::TimestreamWrite::Types::S3Configuration

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

Instance Attribute Details

#bucket_nameString

>Bucket name of the customer S3 bucket.

Returns:

  • (String)


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_optionString

Encryption option for the customer s3 location. Options are S3 server side encryption with an S3-managed key or KMS managed key.

Returns:

  • (String)


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_idString

KMS key id for the customer s3 location when encrypting with a KMS managed key.

Returns:

  • (String)


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_prefixString

Object key preview for the customer S3 location.

Returns:

  • (String)


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