Class: Aws::LookoutforVision::Types::DatasetSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::LookoutforVision::Types::DatasetSource
- Defined in:
- gems/aws-sdk-lookoutforvision/lib/aws-sdk-lookoutforvision/types.rb
Overview
Note:
When making an API call, you may pass DatasetSource data as a hash:
{
ground_truth_manifest: {
s3_object: {
bucket: "S3BucketName", # required
key: "S3ObjectKey", # required
version_id: "S3ObjectVersion",
},
},
}
Information about the location of a manifest file that Amazon Lookout for Vision uses to to create a dataset.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ground_truth_manifest ⇒ Types::DatasetGroundTruthManifest
Location information for the manifest file.
Instance Attribute Details
#ground_truth_manifest ⇒ Types::DatasetGroundTruthManifest
Location information for the manifest file.
440 441 442 443 444 |
# File 'gems/aws-sdk-lookoutforvision/lib/aws-sdk-lookoutforvision/types.rb', line 440 class DatasetSource < Struct.new( :ground_truth_manifest) SENSITIVE = [] include Aws::Structure end |