Interface UpdateQAppSessionMetadataResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<UpdateQAppSessionMetadataResponse.Builder,UpdateQAppSessionMetadataResponse>,QAppsResponse.Builder,SdkBuilder<UpdateQAppSessionMetadataResponse.Builder,UpdateQAppSessionMetadataResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- UpdateQAppSessionMetadataResponse
public static interface UpdateQAppSessionMetadataResponse.Builder extends QAppsResponse.Builder, SdkPojo, CopyableBuilder<UpdateQAppSessionMetadataResponse.Builder,UpdateQAppSessionMetadataResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateQAppSessionMetadataResponse.BuildersessionArn(String sessionArn)The Amazon Resource Name (ARN) of the updated Q App session.UpdateQAppSessionMetadataResponse.BuildersessionId(String sessionId)The unique identifier of the updated Q App session.UpdateQAppSessionMetadataResponse.BuildersessionName(String sessionName)The new name of the updated Q App session.default UpdateQAppSessionMetadataResponse.BuildersharingConfiguration(Consumer<SessionSharingConfiguration.Builder> sharingConfiguration)The new sharing configuration of the updated Q App data collection session.UpdateQAppSessionMetadataResponse.BuildersharingConfiguration(SessionSharingConfiguration sharingConfiguration)The new sharing configuration of the updated 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
UpdateQAppSessionMetadataResponse.Builder sessionId(String sessionId)
The unique identifier of the updated Q App session.
- Parameters:
sessionId- The unique identifier of the updated Q App session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sessionArn
UpdateQAppSessionMetadataResponse.Builder sessionArn(String sessionArn)
The Amazon Resource Name (ARN) of the updated Q App session.
- Parameters:
sessionArn- The Amazon Resource Name (ARN) of the updated Q App session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sessionName
UpdateQAppSessionMetadataResponse.Builder sessionName(String sessionName)
The new name of the updated Q App session.
- Parameters:
sessionName- The new name of the updated Q App session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sharingConfiguration
UpdateQAppSessionMetadataResponse.Builder sharingConfiguration(SessionSharingConfiguration sharingConfiguration)
The new sharing configuration of the updated Q App data collection session.
- Parameters:
sharingConfiguration- The new sharing configuration of the updated Q App data collection session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sharingConfiguration
default UpdateQAppSessionMetadataResponse.Builder sharingConfiguration(Consumer<SessionSharingConfiguration.Builder> sharingConfiguration)
The new sharing configuration of the updated Q App data collection session.
This is a convenience method that creates an instance of theSessionSharingConfiguration.Builderavoiding the need to create one manually viaSessionSharingConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosharingConfiguration(SessionSharingConfiguration).- Parameters:
sharingConfiguration- a consumer that will call methods onSessionSharingConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
sharingConfiguration(SessionSharingConfiguration)
-
-