Interface PropertyNotification.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PropertyNotification.Builder,PropertyNotification>,SdkBuilder<PropertyNotification.Builder,PropertyNotification>,SdkPojo
- Enclosing class:
- PropertyNotification
public static interface PropertyNotification.Builder extends SdkPojo, CopyableBuilder<PropertyNotification.Builder,PropertyNotification>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PropertyNotification.Builderstate(String state)The current notification state.PropertyNotification.Builderstate(PropertyNotificationState state)The current notification state.PropertyNotification.Buildertopic(String topic)The MQTT topic to which IoT SiteWise publishes property value update notifications.-
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
-
topic
PropertyNotification.Builder topic(String topic)
The MQTT topic to which IoT SiteWise publishes property value update notifications.
- Parameters:
topic- The MQTT topic to which IoT SiteWise publishes property value update notifications.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
state
PropertyNotification.Builder state(String state)
The current notification state.
- Parameters:
state- The current notification state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PropertyNotificationState,PropertyNotificationState
-
state
PropertyNotification.Builder state(PropertyNotificationState state)
The current notification state.
- Parameters:
state- The current notification state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PropertyNotificationState,PropertyNotificationState
-
-