Interface UpdateSessionDataResponse.Builder
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<UpdateSessionDataResponse.Builder,
,UpdateSessionDataResponse> QConnectResponse.Builder
,SdkBuilder<UpdateSessionDataResponse.Builder,
,UpdateSessionDataResponse> SdkPojo
,SdkResponse.Builder
- Enclosing class:
UpdateSessionDataResponse
@Mutable
@NotThreadSafe
public static interface UpdateSessionDataResponse.Builder
extends QConnectResponse.Builder, SdkPojo, CopyableBuilder<UpdateSessionDataResponse.Builder,UpdateSessionDataResponse>
-
Method Summary
Modifier and TypeMethodDescriptiondata
(Collection<RuntimeSessionData> data) Data stored in the session.data
(Consumer<RuntimeSessionData.Builder>... data) Data stored in the session.data
(RuntimeSessionData... data) Data stored in the session.The namespace into which the session data is stored.namespace
(SessionDataNamespace namespace) The namespace into which the session data is stored.sessionArn
(String sessionArn) The Amazon Resource Name (ARN) of the session.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 Details
-
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
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.
-
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:
-
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:
-
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
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
Data stored in the session.
This is a convenience method that creates an instance of theRuntimeSessionData.Builder
avoiding the need to create one manually viaRuntimeSessionData.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todata(List<RuntimeSessionData>)
.- 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:
-