Interface Websocket.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Websocket.Builder,Websocket>,SdkBuilder<Websocket.Builder,Websocket>,SdkPojo
- Enclosing class:
- Websocket
public static interface Websocket.Builder extends SdkPojo, CopyableBuilder<Websocket.Builder,Websocket>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Websocket.BuilderconnectionExpiry(String connectionExpiry)The URL expiration timestamp in ISO date format.Websocket.Builderurl(String url)The URL of the websocket.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
url
Websocket.Builder url(String url)
The URL of the websocket.
- Parameters:
url- The URL of the websocket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionExpiry
Websocket.Builder connectionExpiry(String connectionExpiry)
The URL expiration timestamp in ISO date format.
It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.
- Parameters:
connectionExpiry- The URL expiration timestamp in ISO date format.It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-