Interface ListProxySessionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,ChimeResponse.Builder,CopyableBuilder<ListProxySessionsResponse.Builder,ListProxySessionsResponse>,SdkBuilder<ListProxySessionsResponse.Builder,ListProxySessionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListProxySessionsResponse
public static interface ListProxySessionsResponse.Builder extends ChimeResponse.Builder, SdkPojo, CopyableBuilder<ListProxySessionsResponse.Builder,ListProxySessionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListProxySessionsResponse.BuildernextToken(String nextToken)The token to use to retrieve the next page of results.ListProxySessionsResponse.BuilderproxySessions(Collection<ProxySession> proxySessions)The proxy session details.ListProxySessionsResponse.BuilderproxySessions(Consumer<ProxySession.Builder>... proxySessions)The proxy session details.ListProxySessionsResponse.BuilderproxySessions(ProxySession... proxySessions)The proxy session details.-
Methods inherited from interface software.amazon.awssdk.services.chime.model.ChimeResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
proxySessions
ListProxySessionsResponse.Builder proxySessions(Collection<ProxySession> proxySessions)
The proxy session details.
- Parameters:
proxySessions- The proxy session details.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
proxySessions
ListProxySessionsResponse.Builder proxySessions(ProxySession... proxySessions)
The proxy session details.
- Parameters:
proxySessions- The proxy session details.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
proxySessions
ListProxySessionsResponse.Builder proxySessions(Consumer<ProxySession.Builder>... proxySessions)
The proxy session details.
This is a convenience method that creates an instance of theProxySession.Builderavoiding the need to create one manually viaProxySession.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#proxySessions(List.) - Parameters:
proxySessions- a consumer that will call methods onProxySession.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#proxySessions(java.util.Collection)
-
nextToken
ListProxySessionsResponse.Builder nextToken(String nextToken)
The token to use to retrieve the next page of results.
- Parameters:
nextToken- The token to use to retrieve the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-