Class: Aws::DataExchange::Types::KmsKeyToGrant
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataExchange::Types::KmsKeyToGrant
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dataexchange/types.rb
Overview
The Amazon Resource Name (ARN) of the AWS KMS key used to encrypt the shared S3 objects.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kms_key_arn ⇒ String
The AWS KMS CMK (Key Management System Customer Managed Key) used to encrypt S3 objects in the shared S3 Bucket.
Instance Attribute Details
#kms_key_arn ⇒ String
The AWS KMS CMK (Key Management System Customer Managed Key) used to encrypt S3 objects in the shared S3 Bucket. AWS Data exchange will create a KMS grant for each subscriber to allow them to access and decrypt their entitled data that is encrypted using this KMS key specified.
2549 2550 2551 2552 2553 |
# File 'lib/aws-sdk-dataexchange/types.rb', line 2549 class KmsKeyToGrant < Struct.new( :kms_key_arn) SENSITIVE = [] include Aws::Structure end |