Class: Aws::Firehose::Types::KMSEncryptionConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-firehose/types.rb

Overview

Note:

When making an API call, you may pass KMSEncryptionConfig data as a hash:

{
  awskms_key_arn: "AWSKMSKeyARN", # required
}

Describes an encryption key for a destination in Amazon S3.

Instance Attribute Summary collapse

Instance Attribute Details

#awskms_key_arnString

The Amazon Resource Name (ARN) of the encryption key. Must belong to the same AWS Region as the destination Amazon S3 bucket. For more information, see [Amazon Resource Names (ARNs) and AWS Service Namespaces].

[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html

Returns:

  • (String)


1983
1984
1985
1986
# File 'lib/aws-sdk-firehose/types.rb', line 1983

class KMSEncryptionConfig < Struct.new(
  :awskms_key_arn)
  include Aws::Structure
end