Interface NetworkResourceDefinition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NetworkResourceDefinition.Builder,NetworkResourceDefinition>,SdkBuilder<NetworkResourceDefinition.Builder,NetworkResourceDefinition>,SdkPojo
- Enclosing class:
- NetworkResourceDefinition
public static interface NetworkResourceDefinition.Builder extends SdkPojo, CopyableBuilder<NetworkResourceDefinition.Builder,NetworkResourceDefinition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NetworkResourceDefinition.Buildercount(Integer count)The count in the network resource definition.NetworkResourceDefinition.Builderoptions(Collection<NameValuePair> options)The options in the network resource definition.NetworkResourceDefinition.Builderoptions(Consumer<NameValuePair.Builder>... options)The options in the network resource definition.NetworkResourceDefinition.Builderoptions(NameValuePair... options)The options in the network resource definition.NetworkResourceDefinition.Buildertype(String type)The type in the network resource definition.NetworkResourceDefinition.Buildertype(NetworkResourceDefinitionType type)The type in the network resource definition.-
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
-
count
NetworkResourceDefinition.Builder count(Integer count)
The count in the network resource definition.
- Parameters:
count- The count in the network resource definition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
options
NetworkResourceDefinition.Builder options(Collection<NameValuePair> options)
The options in the network resource definition.
- Parameters:
options- The options in the network resource definition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
options
NetworkResourceDefinition.Builder options(NameValuePair... options)
The options in the network resource definition.
- Parameters:
options- The options in the network resource definition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
options
NetworkResourceDefinition.Builder options(Consumer<NameValuePair.Builder>... options)
The options in the network resource definition.
This is a convenience method that creates an instance of theNameValuePair.Builderavoiding the need to create one manually viaNameValuePair.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#options(List.) - Parameters:
options- a consumer that will call methods onNameValuePair.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#options(java.util.Collection)
-
type
NetworkResourceDefinition.Builder type(String type)
The type in the network resource definition.
- Parameters:
type- The type in the network resource definition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
NetworkResourceDefinitionType,NetworkResourceDefinitionType
-
type
NetworkResourceDefinition.Builder type(NetworkResourceDefinitionType type)
The type in the network resource definition.
- Parameters:
type- The type in the network resource definition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
NetworkResourceDefinitionType,NetworkResourceDefinitionType
-
-