Interface Output.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<Output.Builder,Output>
,SdkBuilder<Output.Builder,Output>
,SdkPojo
- Enclosing class:
- Output
public static interface Output.Builder extends SdkPojo, CopyableBuilder<Output.Builder,Output>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Output.Builder
description(String description)
User defined description associated with the output.Output.Builder
exportName(String exportName)
The name of the export associated with the output.Output.Builder
outputKey(String outputKey)
The key associated with the output.Output.Builder
outputValue(String outputValue)
The value associated with the output.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
outputKey
Output.Builder outputKey(String outputKey)
The key associated with the output.
- Parameters:
outputKey
- The key associated with the output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputValue
Output.Builder outputValue(String outputValue)
The value associated with the output.
- Parameters:
outputValue
- The value associated with the output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
Output.Builder description(String description)
User defined description associated with the output.
- Parameters:
description
- User defined description associated with the output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exportName
Output.Builder exportName(String exportName)
The name of the export associated with the output.
- Parameters:
exportName
- The name of the export associated with the output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-