Class: Aws::TranscribeStreamingService::Types::MedicalScribeEncryptionSettings

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-transcribestreamingservice/types.rb

Overview

Contains encryption related settings to be used for data encryption with Key Management Service, including KmsEncryptionContext and KmsKeyId. The KmsKeyId is required, while KmsEncryptionContext is optional for additional layer of security.

By default, Amazon Web Services HealthScribe provides encryption at rest to protect sensitive customer data using Amazon S3-managed keys. HealthScribe uses the KMS key you specify as a second layer of encryption.

Your ‘ResourceAccessRoleArn` must permission to use your KMS key. For more information, see [Data Encryption at rest for Amazon Web Services HealthScribe].

[1]: docs.aws.amazon.com/transcribe/latest/dg/health-scribe-encryption.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#kms_encryption_contextHash<String,String>

A map of plain text, non-secret key:value pairs, known as encryption context pairs, that provide an added layer of security for your data. For more information, see [KMSencryption context ][1] and [Asymmetric keys in KMS ][2].

[1]: docs.aws.amazon.com/transcribe/latest/dg/key-management.html#kms-context [2]: docs.aws.amazon.com/transcribe/latest/dg/symmetric-asymmetric.html

Returns:

  • (Hash<String,String>)


1006
1007
1008
1009
1010
1011
# File 'lib/aws-sdk-transcribestreamingservice/types.rb', line 1006

class MedicalScribeEncryptionSettings < Struct.new(
  :kms_encryption_context,
  :kms_key_id)
  SENSITIVE = []
  include Aws::Structure
end

#kms_key_idString

The ID of the KMS key you want to use for your streaming session. You can specify its KMS key ID, key Amazon Resource Name (ARN), alias name, or alias ARN. When using an alias name, prefix it with ‘“alias/”`. To specify a KMS key in a different Amazon Web Services account, you must use the key ARN or alias ARN.

For example:

  • Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab

  • Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab

  • Alias name: alias/ExampleAlias

  • Alias ARN: arn:aws:kms:us-east-2:111122223333:alias/ExampleAlias

To get the key ID and key ARN for a KMS key, use the [ListKeys] or [DescribeKey] KMS API operations. To get the alias name and alias ARN, use [ListKeys] API operation.

[1]: docs.aws.amazon.com/kms/latest/APIReference/API_ListKeys.html [2]: docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html [3]: docs.aws.amazon.com/kms/latest/APIReference/API_ListAliases.html

Returns:

  • (String)


1006
1007
1008
1009
1010
1011
# File 'lib/aws-sdk-transcribestreamingservice/types.rb', line 1006

class MedicalScribeEncryptionSettings < Struct.new(
  :kms_encryption_context,
  :kms_key_id)
  SENSITIVE = []
  include Aws::Structure
end