Class: Aws::Firehose::Types::EncryptionConfiguration

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 EncryptionConfiguration data as a hash:

{
  no_encryption_config: "NoEncryption", # accepts NoEncryption
  kms_encryption_config: {
    awskms_key_arn: "AWSKMSKeyARN", # required
  },
}

Describes the encryption for a destination in Amazon S3.

Instance Attribute Summary collapse

Instance Attribute Details

#kms_encryption_configTypes::KMSEncryptionConfig

The encryption key.



1379
1380
1381
1382
1383
# File 'lib/aws-sdk-firehose/types.rb', line 1379

class EncryptionConfiguration < Struct.new(
  :no_encryption_config,
  :kms_encryption_config)
  include Aws::Structure
end

#no_encryption_configString

Specifically override existing encryption information to ensure that no encryption is used.

Returns:

  • (String)


1379
1380
1381
1382
1383
# File 'lib/aws-sdk-firehose/types.rb', line 1379

class EncryptionConfiguration < Struct.new(
  :no_encryption_config,
  :kms_encryption_config)
  include Aws::Structure
end