Interface CreateChatTokenResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreateChatTokenResponse.Builder,CreateChatTokenResponse>,IvschatResponse.Builder,SdkBuilder<CreateChatTokenResponse.Builder,CreateChatTokenResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CreateChatTokenResponse
public static interface CreateChatTokenResponse.Builder extends IvschatResponse.Builder, SdkPojo, CopyableBuilder<CreateChatTokenResponse.Builder,CreateChatTokenResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateChatTokenResponse.BuildersessionExpirationTime(Instant sessionExpirationTime)Time after which an end user's session is no longer valid.CreateChatTokenResponse.Buildertoken(String token)The issued client token, encrypted.CreateChatTokenResponse.BuildertokenExpirationTime(Instant tokenExpirationTime)Time after which the token is no longer valid and cannot be used to connect to a room.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ivschat.model.IvschatResponse.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
-
token
CreateChatTokenResponse.Builder token(String token)
The issued client token, encrypted.
- Parameters:
token- The issued client token, encrypted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tokenExpirationTime
CreateChatTokenResponse.Builder tokenExpirationTime(Instant tokenExpirationTime)
Time after which the token is no longer valid and cannot be used to connect to a room. This is an ISO 8601 timestamp; note that this is returned as a string.
- Parameters:
tokenExpirationTime- Time after which the token is no longer valid and cannot be used to connect to a room. This is an ISO 8601 timestamp; note that this is returned as a string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sessionExpirationTime
CreateChatTokenResponse.Builder sessionExpirationTime(Instant sessionExpirationTime)
Time after which an end user's session is no longer valid. This is an ISO 8601 timestamp; note that this is returned as a string.
- Parameters:
sessionExpirationTime- Time after which an end user's session is no longer valid. This is an ISO 8601 timestamp; note that this is returned as a string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-