Interface MqttContext.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MqttContext.Builder,MqttContext>,SdkBuilder<MqttContext.Builder,MqttContext>,SdkPojo
- Enclosing class:
- MqttContext
public static interface MqttContext.Builder extends SdkPojo, CopyableBuilder<MqttContext.Builder,MqttContext>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MqttContext.BuilderclientId(String clientId)The value of theclientIdkey in an MQTT authorization request.MqttContext.Builderpassword(SdkBytes password)The value of thepasswordkey in an MQTT authorization request.MqttContext.Builderusername(String username)The value of theusernamekey in an MQTT authorization request.-
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
-
username
MqttContext.Builder username(String username)
The value of the
usernamekey in an MQTT authorization request.- Parameters:
username- The value of theusernamekey in an MQTT authorization request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
password
MqttContext.Builder password(SdkBytes password)
The value of the
passwordkey in an MQTT authorization request.- Parameters:
password- The value of thepasswordkey in an MQTT authorization request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientId
MqttContext.Builder clientId(String clientId)
The value of the
clientIdkey in an MQTT authorization request.- Parameters:
clientId- The value of theclientIdkey in an MQTT authorization request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-