Interface ListNodesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<ListNodesRequest.Builder,ListNodesRequest>,ManagedBlockchainRequest.Builder,SdkBuilder<ListNodesRequest.Builder,ListNodesRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListNodesRequest
public static interface ListNodesRequest.Builder extends ManagedBlockchainRequest.Builder, SdkPojo, CopyableBuilder<ListNodesRequest.Builder,ListNodesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListNodesRequest.BuildermaxResults(Integer maxResults)The maximum number of nodes to list.ListNodesRequest.BuildermemberId(String memberId)The unique identifier of the member who owns the nodes to list.ListNodesRequest.BuildernetworkId(String networkId)The unique identifier of the network for which to list nodes.ListNodesRequest.BuildernextToken(String nextToken)The pagination token that indicates the next set of results to retrieve.ListNodesRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListNodesRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)ListNodesRequest.Builderstatus(String status)An optional status specifier.ListNodesRequest.Builderstatus(NodeStatus status)An optional status specifier.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.managedblockchain.model.ManagedBlockchainRequest.Builder
build
-
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
-
networkId
ListNodesRequest.Builder networkId(String networkId)
The unique identifier of the network for which to list nodes.
- Parameters:
networkId- The unique identifier of the network for which to list nodes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
memberId
ListNodesRequest.Builder memberId(String memberId)
The unique identifier of the member who owns the nodes to list.
Applies only to Hyperledger Fabric and is required for Hyperledger Fabric.
- Parameters:
memberId- The unique identifier of the member who owns the nodes to list.Applies only to Hyperledger Fabric and is required for Hyperledger Fabric.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ListNodesRequest.Builder status(String status)
An optional status specifier. If provided, only nodes currently in this status are listed.
- Parameters:
status- An optional status specifier. If provided, only nodes currently in this status are listed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
NodeStatus,NodeStatus
-
status
ListNodesRequest.Builder status(NodeStatus status)
An optional status specifier. If provided, only nodes currently in this status are listed.
- Parameters:
status- An optional status specifier. If provided, only nodes currently in this status are listed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
NodeStatus,NodeStatus
-
maxResults
ListNodesRequest.Builder maxResults(Integer maxResults)
The maximum number of nodes to list.
- Parameters:
maxResults- The maximum number of nodes to list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListNodesRequest.Builder nextToken(String nextToken)
The pagination token that indicates the next set of results to retrieve.
- Parameters:
nextToken- The pagination token that indicates the next set of results to retrieve.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListNodesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListNodesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-