Class: Aws::Firehose::Types::KMSEncryptionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::KMSEncryptionConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-firehose/types.rb
Overview
Describes an encryption key for a destination in Amazon S3.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#awskms_key_arn ⇒ String
The Amazon Resource Name (ARN) of the encryption key.
Instance Attribute Details
#awskms_key_arn ⇒ String
The Amazon Resource Name (ARN) of the encryption key. Must belong to the same Amazon Web Services Region as the destination Amazon S3 bucket. For more information, see [Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces].
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
3172 3173 3174 3175 3176 |
# File 'lib/aws-sdk-firehose/types.rb', line 3172 class KMSEncryptionConfig < Struct.new( :awskms_key_arn) SENSITIVE = [] include Aws::Structure end |