Interface OutputDataConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OutputDataConfig.Builder,OutputDataConfig>,SdkBuilder<OutputDataConfig.Builder,OutputDataConfig>,SdkPojo
- Enclosing class:
- OutputDataConfig
public static interface OutputDataConfig.Builder extends SdkPojo, CopyableBuilder<OutputDataConfig.Builder,OutputDataConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default OutputDataConfig.BuilderencryptionKey(Consumer<EncryptionKey.Builder> encryptionKey)Sets the value of the EncryptionKey property for this object.OutputDataConfig.BuilderencryptionKey(EncryptionKey encryptionKey)Sets the value of the EncryptionKey property for this object.OutputDataConfig.Builders3Uri(String s3Uri)The URI of the S3 folder that contains a translation job's output file.-
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
-
s3Uri
OutputDataConfig.Builder s3Uri(String s3Uri)
The URI of the S3 folder that contains a translation job's output file. The folder must be in the same Region as the API endpoint that you are calling.
- Parameters:
s3Uri- The URI of the S3 folder that contains a translation job's output file. The folder must be in the same Region as the API endpoint that you are calling.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionKey
OutputDataConfig.Builder encryptionKey(EncryptionKey encryptionKey)
Sets the value of the EncryptionKey property for this object.- Parameters:
encryptionKey- The new value for the EncryptionKey property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionKey
default OutputDataConfig.Builder encryptionKey(Consumer<EncryptionKey.Builder> encryptionKey)
Sets the value of the EncryptionKey property for this object. This is a convenience method that creates an instance of theEncryptionKey.Builderavoiding the need to create one manually viaEncryptionKey.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toencryptionKey(EncryptionKey).- Parameters:
encryptionKey- a consumer that will call methods onEncryptionKey.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
encryptionKey(EncryptionKey)
-
-