Class: Aws::Firehose::Types::KMSEncryptionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::KMSEncryptionConfig
- Defined in:
- gems/aws-sdk-firehose/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.
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 AWS Region as the destination Amazon S3 bucket. For more information, see Amazon Resource Names (ARNs) and AWS Service Namespaces.
2908 2909 2910 2911 2912 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 2908 class KMSEncryptionConfig < Struct.new( :awskms_key_arn) SENSITIVE = [] include Aws::Structure end |