Interface Mqtt5Configuration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Mqtt5Configuration.Builder,Mqtt5Configuration>,SdkBuilder<Mqtt5Configuration.Builder,Mqtt5Configuration>,SdkPojo
- Enclosing class:
- Mqtt5Configuration
public static interface Mqtt5Configuration.Builder extends SdkPojo, CopyableBuilder<Mqtt5Configuration.Builder,Mqtt5Configuration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Mqtt5Configuration.BuilderpropagatingAttributes(Collection<PropagatingAttribute> propagatingAttributes)An object that represents the propagating thing attributes and the connection attributes.Mqtt5Configuration.BuilderpropagatingAttributes(Consumer<PropagatingAttribute.Builder>... propagatingAttributes)An object that represents the propagating thing attributes and the connection attributes.Mqtt5Configuration.BuilderpropagatingAttributes(PropagatingAttribute... propagatingAttributes)An object that represents the propagating thing attributes and the connection attributes.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
propagatingAttributes
Mqtt5Configuration.Builder propagatingAttributes(Collection<PropagatingAttribute> propagatingAttributes)
An object that represents the propagating thing attributes and the connection attributes.
- Parameters:
propagatingAttributes- An object that represents the propagating thing attributes and the connection attributes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propagatingAttributes
Mqtt5Configuration.Builder propagatingAttributes(PropagatingAttribute... propagatingAttributes)
An object that represents the propagating thing attributes and the connection attributes.
- Parameters:
propagatingAttributes- An object that represents the propagating thing attributes and the connection attributes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propagatingAttributes
Mqtt5Configuration.Builder propagatingAttributes(Consumer<PropagatingAttribute.Builder>... propagatingAttributes)
An object that represents the propagating thing attributes and the connection attributes.
This is a convenience method that creates an instance of thePropagatingAttribute.Builderavoiding the need to create one manually viaPropagatingAttribute.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#propagatingAttributes(List.) - Parameters:
propagatingAttributes- a consumer that will call methods onPropagatingAttribute.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#propagatingAttributes(java.util.Collection)
-
-