Interface OutputConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<OutputConfig.Builder,OutputConfig>
,SdkBuilder<OutputConfig.Builder,OutputConfig>
,SdkPojo
- Enclosing class:
- OutputConfig
public static interface OutputConfig.Builder extends SdkPojo, CopyableBuilder<OutputConfig.Builder,OutputConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OutputConfig.Builder
s3Bucket(String s3Bucket)
The name of the bucket your output will go to.OutputConfig.Builder
s3Prefix(String s3Prefix)
The prefix of the object key that the output will be saved to.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
s3Bucket
OutputConfig.Builder s3Bucket(String s3Bucket)
The name of the bucket your output will go to.
- Parameters:
s3Bucket
- The name of the bucket your output will go to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Prefix
OutputConfig.Builder s3Prefix(String s3Prefix)
The prefix of the object key that the output will be saved to. When not enabled, the prefix will be “textract_output".
- Parameters:
s3Prefix
- The prefix of the object key that the output will be saved to. When not enabled, the prefix will be “textract_output".- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-