Interface ListQAppSessionDataResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListQAppSessionDataResponse.Builder,ListQAppSessionDataResponse>,QAppsResponse.Builder,SdkBuilder<ListQAppSessionDataResponse.Builder,ListQAppSessionDataResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListQAppSessionDataResponse
public static interface ListQAppSessionDataResponse.Builder extends QAppsResponse.Builder, SdkPojo, CopyableBuilder<ListQAppSessionDataResponse.Builder,ListQAppSessionDataResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListQAppSessionDataResponse.BuildernextToken(String nextToken)The pagination token that indicates the next set of results to retrieve.ListQAppSessionDataResponse.BuildersessionArn(String sessionArn)The Amazon Resource Name (ARN) of the Q App data collection session.ListQAppSessionDataResponse.BuildersessionData(Collection<QAppSessionData> sessionData)The collected responses of a Q App session.ListQAppSessionDataResponse.BuildersessionData(Consumer<QAppSessionData.Builder>... sessionData)The collected responses of a Q App session.ListQAppSessionDataResponse.BuildersessionData(QAppSessionData... sessionData)The collected responses of a Q App session.ListQAppSessionDataResponse.BuildersessionId(String sessionId)The unique identifier of the Q App data collection session.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.qapps.model.QAppsResponse.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
-
sessionId
ListQAppSessionDataResponse.Builder sessionId(String sessionId)
The unique identifier of the Q App data collection session.
- Parameters:
sessionId- The unique identifier of the Q App data collection session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sessionArn
ListQAppSessionDataResponse.Builder sessionArn(String sessionArn)
The Amazon Resource Name (ARN) of the Q App data collection session.
- Parameters:
sessionArn- The Amazon Resource Name (ARN) of the Q App data collection session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sessionData
ListQAppSessionDataResponse.Builder sessionData(Collection<QAppSessionData> sessionData)
The collected responses of a Q App session.
- Parameters:
sessionData- The collected responses of a Q App session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sessionData
ListQAppSessionDataResponse.Builder sessionData(QAppSessionData... sessionData)
The collected responses of a Q App session.
- Parameters:
sessionData- The collected responses of a Q App session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sessionData
ListQAppSessionDataResponse.Builder sessionData(Consumer<QAppSessionData.Builder>... sessionData)
The collected responses of a Q App session.
This is a convenience method that creates an instance of theQAppSessionData.Builderavoiding the need to create one manually viaQAppSessionData.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#sessionData(List.) - Parameters:
sessionData- a consumer that will call methods onQAppSessionData.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#sessionData(java.util.Collection)
-
nextToken
ListQAppSessionDataResponse.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.
-
-