Class: Aws::Personalize::Types::DatasetExportJobOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::DatasetExportJobOutput
- Defined in:
- gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb
Overview
Note:
When making an API call, you may pass DatasetExportJobOutput data as a hash:
{
s3_data_destination: { # required
path: "S3Location", # required
kms_key_arn: "KmsKeyArn",
},
}
The output configuration parameters of a dataset export job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_data_destination ⇒ Types::S3DataConfig
The configuration details of an Amazon S3 input or output bucket.
Instance Attribute Details
#s3_data_destination ⇒ Types::S3DataConfig
The configuration details of an Amazon S3 input or output bucket.
2108 2109 2110 2111 2112 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 2108 class DatasetExportJobOutput < Struct.new( :s3_data_destination) SENSITIVE = [] include Aws::Structure end |