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.Builder
clientId(String clientId)
The value of theclientId
key in an MQTT authorization request.MqttContext.Builder
password(SdkBytes password)
The value of thepassword
key in an MQTT authorization request.MqttContext.Builder
username(String username)
The value of theusername
key 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
username
key in an MQTT authorization request.- Parameters:
username
- The value of theusername
key 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
password
key in an MQTT authorization request.- Parameters:
password
- The value of thepassword
key 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
clientId
key in an MQTT authorization request.- Parameters:
clientId
- The value of theclientId
key in an MQTT authorization request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-