Interface GetReservedNodeExchangeConfigurationOptionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<GetReservedNodeExchangeConfigurationOptionsResponse.Builder,GetReservedNodeExchangeConfigurationOptionsResponse>
,RedshiftResponse.Builder
,SdkBuilder<GetReservedNodeExchangeConfigurationOptionsResponse.Builder,GetReservedNodeExchangeConfigurationOptionsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- GetReservedNodeExchangeConfigurationOptionsResponse
public static interface GetReservedNodeExchangeConfigurationOptionsResponse.Builder extends RedshiftResponse.Builder, SdkPojo, CopyableBuilder<GetReservedNodeExchangeConfigurationOptionsResponse.Builder,GetReservedNodeExchangeConfigurationOptionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetReservedNodeExchangeConfigurationOptionsResponse.Builder
marker(String marker)
A pagination token provided by a previousGetReservedNodeExchangeConfigurationOptions
request.GetReservedNodeExchangeConfigurationOptionsResponse.Builder
reservedNodeConfigurationOptionList(Collection<ReservedNodeConfigurationOption> reservedNodeConfigurationOptionList)
the configuration options for the reserved-node exchange.GetReservedNodeExchangeConfigurationOptionsResponse.Builder
reservedNodeConfigurationOptionList(Consumer<ReservedNodeConfigurationOption.Builder>... reservedNodeConfigurationOptionList)
the configuration options for the reserved-node exchange.GetReservedNodeExchangeConfigurationOptionsResponse.Builder
reservedNodeConfigurationOptionList(ReservedNodeConfigurationOption... reservedNodeConfigurationOptionList)
the configuration options for the reserved-node exchange.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.redshift.model.RedshiftResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
marker
GetReservedNodeExchangeConfigurationOptionsResponse.Builder marker(String marker)
A pagination token provided by a previous
GetReservedNodeExchangeConfigurationOptions
request.- Parameters:
marker
- A pagination token provided by a previousGetReservedNodeExchangeConfigurationOptions
request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reservedNodeConfigurationOptionList
GetReservedNodeExchangeConfigurationOptionsResponse.Builder reservedNodeConfigurationOptionList(Collection<ReservedNodeConfigurationOption> reservedNodeConfigurationOptionList)
the configuration options for the reserved-node exchange. These options include information about the source reserved node and target reserved node. Details include the node type, the price, the node count, and the offering type.
- Parameters:
reservedNodeConfigurationOptionList
- the configuration options for the reserved-node exchange. These options include information about the source reserved node and target reserved node. Details include the node type, the price, the node count, and the offering type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reservedNodeConfigurationOptionList
GetReservedNodeExchangeConfigurationOptionsResponse.Builder reservedNodeConfigurationOptionList(ReservedNodeConfigurationOption... reservedNodeConfigurationOptionList)
the configuration options for the reserved-node exchange. These options include information about the source reserved node and target reserved node. Details include the node type, the price, the node count, and the offering type.
- Parameters:
reservedNodeConfigurationOptionList
- the configuration options for the reserved-node exchange. These options include information about the source reserved node and target reserved node. Details include the node type, the price, the node count, and the offering type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reservedNodeConfigurationOptionList
GetReservedNodeExchangeConfigurationOptionsResponse.Builder reservedNodeConfigurationOptionList(Consumer<ReservedNodeConfigurationOption.Builder>... reservedNodeConfigurationOptionList)
the configuration options for the reserved-node exchange. These options include information about the source reserved node and target reserved node. Details include the node type, the price, the node count, and the offering type.
This is a convenience method that creates an instance of theReservedNodeConfigurationOption.Builder
avoiding the need to create one manually viaReservedNodeConfigurationOption.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#reservedNodeConfigurationOptionList(List
.) - Parameters:
reservedNodeConfigurationOptionList
- a consumer that will call methods onReservedNodeConfigurationOption.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#reservedNodeConfigurationOptionList(java.util.Collection
)
-
-