Interface UpdateRoomResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<UpdateRoomResponse.Builder,UpdateRoomResponse>,IvschatResponse.Builder,SdkBuilder<UpdateRoomResponse.Builder,UpdateRoomResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- UpdateRoomResponse
public static interface UpdateRoomResponse.Builder extends IvschatResponse.Builder, SdkPojo, CopyableBuilder<UpdateRoomResponse.Builder,UpdateRoomResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateRoomResponse.Builderarn(String arn)Room ARN, from the request (ifidentifierwas an ARN).UpdateRoomResponse.BuildercreateTime(Instant createTime)Time when the room was created.UpdateRoomResponse.Builderid(String id)Room ID, generated by the system.UpdateRoomResponse.BuilderloggingConfigurationIdentifiers(String... loggingConfigurationIdentifiers)Array of logging configurations attached to the room, from the request (if specified).UpdateRoomResponse.BuilderloggingConfigurationIdentifiers(Collection<String> loggingConfigurationIdentifiers)Array of logging configurations attached to the room, from the request (if specified).UpdateRoomResponse.BuildermaximumMessageLength(Integer maximumMessageLength)Maximum number of characters in a single message, from the request (if specified).UpdateRoomResponse.BuildermaximumMessageRatePerSecond(Integer maximumMessageRatePerSecond)Maximum number of messages per second that can be sent to the room (by all clients), from the request (if specified).default UpdateRoomResponse.BuildermessageReviewHandler(Consumer<MessageReviewHandler.Builder> messageReviewHandler)Configuration information for optional review of messages.UpdateRoomResponse.BuildermessageReviewHandler(MessageReviewHandler messageReviewHandler)Configuration information for optional review of messages.UpdateRoomResponse.Buildername(String name)Room name, from the request (if specified).UpdateRoomResponse.Buildertags(Map<String,String> tags)Tags attached to the resource.UpdateRoomResponse.BuilderupdateTime(Instant updateTime)Time of the room’s last update.-
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
-
arn
UpdateRoomResponse.Builder arn(String arn)
Room ARN, from the request (if
identifierwas an ARN).- Parameters:
arn- Room ARN, from the request (ifidentifierwas an ARN).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
id
UpdateRoomResponse.Builder id(String id)
Room ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely identifies the room.
- Parameters:
id- Room ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely identifies the room.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
UpdateRoomResponse.Builder name(String name)
Room name, from the request (if specified).
- Parameters:
name- Room name, from the request (if specified).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createTime
UpdateRoomResponse.Builder createTime(Instant createTime)
Time when the room was created. This is an ISO 8601 timestamp; note that this is returned as a string.
- Parameters:
createTime- Time when the room was created. 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.
-
updateTime
UpdateRoomResponse.Builder updateTime(Instant updateTime)
Time of the room’s last update. This is an ISO 8601 timestamp; note that this is returned as a string.
- Parameters:
updateTime- Time of the room’s last update. 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.
-
maximumMessageRatePerSecond
UpdateRoomResponse.Builder maximumMessageRatePerSecond(Integer maximumMessageRatePerSecond)
Maximum number of messages per second that can be sent to the room (by all clients), from the request (if specified).
- Parameters:
maximumMessageRatePerSecond- Maximum number of messages per second that can be sent to the room (by all clients), from the request (if specified).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maximumMessageLength
UpdateRoomResponse.Builder maximumMessageLength(Integer maximumMessageLength)
Maximum number of characters in a single message, from the request (if specified).
- Parameters:
maximumMessageLength- Maximum number of characters in a single message, from the request (if specified).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
messageReviewHandler
UpdateRoomResponse.Builder messageReviewHandler(MessageReviewHandler messageReviewHandler)
Configuration information for optional review of messages.
- Parameters:
messageReviewHandler- Configuration information for optional review of messages.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
messageReviewHandler
default UpdateRoomResponse.Builder messageReviewHandler(Consumer<MessageReviewHandler.Builder> messageReviewHandler)
Configuration information for optional review of messages.
This is a convenience method that creates an instance of theMessageReviewHandler.Builderavoiding the need to create one manually viaMessageReviewHandler.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tomessageReviewHandler(MessageReviewHandler).- Parameters:
messageReviewHandler- a consumer that will call methods onMessageReviewHandler.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
messageReviewHandler(MessageReviewHandler)
-
tags
UpdateRoomResponse.Builder tags(Map<String,String> tags)
Tags attached to the resource. Array of maps, each of the form
string:string (key:value).- Parameters:
tags- Tags attached to the resource. Array of maps, each of the formstring:string (key:value).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
loggingConfigurationIdentifiers
UpdateRoomResponse.Builder loggingConfigurationIdentifiers(Collection<String> loggingConfigurationIdentifiers)
Array of logging configurations attached to the room, from the request (if specified).
- Parameters:
loggingConfigurationIdentifiers- Array of logging configurations attached to the room, from the request (if specified).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
loggingConfigurationIdentifiers
UpdateRoomResponse.Builder loggingConfigurationIdentifiers(String... loggingConfigurationIdentifiers)
Array of logging configurations attached to the room, from the request (if specified).
- Parameters:
loggingConfigurationIdentifiers- Array of logging configurations attached to the room, from the request (if specified).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-