Class: Aws::Personalize::Types::S3DataConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::S3DataConfig
- Defined in:
- gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb
Overview
Note:
When making an API call, you may pass S3DataConfig data as a hash:
{
path: "S3Location", # required
kms_key_arn: "KmsKeyArn",
}
The configuration details of an Amazon S3 input or output bucket.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kms_key_arn ⇒ String
The Amazon Resource Name (ARN) of the Key Management Service (KMS) key that Amazon Personalize uses to encrypt or decrypt the input and output files.
-
#path ⇒ String
The file path of the Amazon S3 bucket.
Instance Attribute Details
#kms_key_arn ⇒ String
The Amazon Resource Name (ARN) of the Key Management Service (KMS) key that Amazon Personalize uses to encrypt or decrypt the input and output files.
5102 5103 5104 5105 5106 5107 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 5102 class S3DataConfig < Struct.new( :path, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |
#path ⇒ String
The file path of the Amazon S3 bucket.
5102 5103 5104 5105 5106 5107 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 5102 class S3DataConfig < Struct.new( :path, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |