Class: Aws::Rekognition::Types::OutputConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::OutputConfig
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Note:
When making an API call, you may pass OutputConfig data as a hash:
{
s3_bucket: "S3Bucket",
s3_key_prefix: "S3KeyPrefix",
}
The S3 bucket and folder location where training output is placed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_bucket ⇒ String
The S3 bucket where training output is placed.
-
#s3_key_prefix ⇒ String
The prefix applied to the training output files.
Instance Attribute Details
#s3_bucket ⇒ String
The S3 bucket where training output is placed.
3613 3614 3615 3616 3617 3618 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3613 class OutputConfig < Struct.new( :s3_bucket, :s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#s3_key_prefix ⇒ String
The prefix applied to the training output files.
3613 3614 3615 3616 3617 3618 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3613 class OutputConfig < Struct.new( :s3_bucket, :s3_key_prefix) SENSITIVE = [] include Aws::Structure end |