Interface Action.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Action.Builder,Action>,SdkBuilder<Action.Builder,Action>,SdkPojo
- Enclosing class:
- Action
public static interface Action.Builder extends SdkPojo, CopyableBuilder<Action.Builder,Action>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Action.BuilderactionId(String actionId)The ID associated with the action.Action.Builderproperties(String properties)A string map of action-specific metadata.-
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
-
actionId
Action.Builder actionId(String actionId)
The ID associated with the action.
- Parameters:
actionId- The ID associated with the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
properties
Action.Builder properties(String properties)
A string map of action-specific metadata. Each element in the map consists of a key-value pair. For example,
{"value": "100"}.The keys use camel case names that match the fields in the schema for the Actions dataset. In the previous example, the
valuematches the 'VALUE' field defined in the Actions schema. For categorical string data, to include multiple categories for a single action, separate each category with a pipe separator (|). For example,\"Deluxe|Premium\".- Parameters:
properties- A string map of action-specific metadata. Each element in the map consists of a key-value pair. For example,{"value": "100"}.The keys use camel case names that match the fields in the schema for the Actions dataset. In the previous example, the
valuematches the 'VALUE' field defined in the Actions schema. For categorical string data, to include multiple categories for a single action, separate each category with a pipe separator (|). For example,\"Deluxe|Premium\".- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-