Class: Aws::Comprehend::Types::UpdateDataSecurityConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::UpdateDataSecurityConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
Data security configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#model_kms_key_id ⇒ String
ID for the KMS key that Amazon Comprehend uses to encrypt trained custom models.
-
#volume_kms_key_id ⇒ String
ID for the KMS key that Amazon Comprehend uses to encrypt the volume.
-
#vpc_config ⇒ Types::VpcConfig
Configuration parameters for an optional private Virtual Private Cloud (VPC) containing the resources you are using for the job.
Instance Attribute Details
#model_kms_key_id ⇒ String
ID for the KMS key that Amazon Comprehend uses to encrypt trained custom models. The ModelKmsKeyId can be either of the following formats:
-
KMS Key ID: ‘“1234abcd-12ab-34cd-56ef-1234567890ab”`
-
Amazon Resource Name (ARN) of a KMS Key: ‘“arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab”`
8795 8796 8797 8798 8799 8800 8801 |
# File 'lib/aws-sdk-comprehend/types.rb', line 8795 class UpdateDataSecurityConfig < Struct.new( :model_kms_key_id, :volume_kms_key_id, :vpc_config) SENSITIVE = [] include Aws::Structure end |
#volume_kms_key_id ⇒ String
ID for the KMS key that Amazon Comprehend uses to encrypt the volume.
8795 8796 8797 8798 8799 8800 8801 |
# File 'lib/aws-sdk-comprehend/types.rb', line 8795 class UpdateDataSecurityConfig < Struct.new( :model_kms_key_id, :volume_kms_key_id, :vpc_config) SENSITIVE = [] include Aws::Structure end |
#vpc_config ⇒ Types::VpcConfig
Configuration parameters for an optional private Virtual Private Cloud (VPC) containing the resources you are using for the job. For more information, see [Amazon VPC].
[1]: docs.aws.amazon.com/vpc/latest/userguide/what-is-amazon-vpc.html
8795 8796 8797 8798 8799 8800 8801 |
# File 'lib/aws-sdk-comprehend/types.rb', line 8795 class UpdateDataSecurityConfig < Struct.new( :model_kms_key_id, :volume_kms_key_id, :vpc_config) SENSITIVE = [] include Aws::Structure end |