Interface UpdateSessionDataResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<UpdateSessionDataResponse.Builder,UpdateSessionDataResponse>,QConnectResponse.Builder,SdkBuilder<UpdateSessionDataResponse.Builder,UpdateSessionDataResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- UpdateSessionDataResponse
public static interface UpdateSessionDataResponse.Builder extends QConnectResponse.Builder, SdkPojo, CopyableBuilder<UpdateSessionDataResponse.Builder,UpdateSessionDataResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateSessionDataResponse.Builderdata(Collection<RuntimeSessionData> data)Data stored in the session.UpdateSessionDataResponse.Builderdata(Consumer<RuntimeSessionData.Builder>... data)Data stored in the session.UpdateSessionDataResponse.Builderdata(RuntimeSessionData... data)Data stored in the session.UpdateSessionDataResponse.Buildernamespace(String namespace)The namespace into which the session data is stored.UpdateSessionDataResponse.Buildernamespace(SessionDataNamespace namespace)The namespace into which the session data is stored.UpdateSessionDataResponse.BuildersessionArn(String sessionArn)The Amazon Resource Name (ARN) of the session.UpdateSessionDataResponse.BuildersessionId(String sessionId)The identifier of the session.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.qconnect.model.QConnectResponse.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
-
data
UpdateSessionDataResponse.Builder data(Collection<RuntimeSessionData> data)
Data stored in the session.
- Parameters:
data- Data stored in the session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
data
UpdateSessionDataResponse.Builder data(RuntimeSessionData... data)
Data stored in the session.
- Parameters:
data- Data stored in the session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
data
UpdateSessionDataResponse.Builder data(Consumer<RuntimeSessionData.Builder>... data)
Data stored in the session.
This is a convenience method that creates an instance of theRuntimeSessionData.Builderavoiding the need to create one manually viaRuntimeSessionData.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#data(List.) - Parameters:
data- a consumer that will call methods onRuntimeSessionData.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#data(java.util.Collection)
-
namespace
UpdateSessionDataResponse.Builder namespace(String namespace)
The namespace into which the session data is stored. Supported namespaces are: Custom
- Parameters:
namespace- The namespace into which the session data is stored. Supported namespaces are: Custom- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SessionDataNamespace,SessionDataNamespace
-
namespace
UpdateSessionDataResponse.Builder namespace(SessionDataNamespace namespace)
The namespace into which the session data is stored. Supported namespaces are: Custom
- Parameters:
namespace- The namespace into which the session data is stored. Supported namespaces are: Custom- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SessionDataNamespace,SessionDataNamespace
-
sessionArn
UpdateSessionDataResponse.Builder sessionArn(String sessionArn)
The Amazon Resource Name (ARN) of the session.
- Parameters:
sessionArn- The Amazon Resource Name (ARN) of the session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sessionId
UpdateSessionDataResponse.Builder sessionId(String sessionId)
The identifier of the session.
- Parameters:
sessionId- The identifier of the session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-