Class: Aws::DataExchange::Types::KmsKeyToGrant
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataExchange::Types::KmsKeyToGrant
- Defined in:
- gems/aws-sdk-dataexchange/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.
2082 2083 2084 2085 2086 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 2082 class KmsKeyToGrant < Struct.new( :kms_key_arn) SENSITIVE = [] include Aws::Structure end |