Interface OpsItemDataValue.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<OpsItemDataValue.Builder,OpsItemDataValue>
,SdkBuilder<OpsItemDataValue.Builder,OpsItemDataValue>
,SdkPojo
- Enclosing class:
- OpsItemDataValue
public static interface OpsItemDataValue.Builder extends SdkPojo, CopyableBuilder<OpsItemDataValue.Builder,OpsItemDataValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OpsItemDataValue.Builder
type(String type)
The type of key-value pair.OpsItemDataValue.Builder
type(OpsItemDataType type)
The type of key-value pair.OpsItemDataValue.Builder
value(String value)
The value of the OperationalData key.-
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
-
value
OpsItemDataValue.Builder value(String value)
The value of the OperationalData key.
- Parameters:
value
- The value of the OperationalData key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
OpsItemDataValue.Builder type(String type)
The type of key-value pair. Valid types include
SearchableString
andString
.- Parameters:
type
- The type of key-value pair. Valid types includeSearchableString
andString
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OpsItemDataType
,OpsItemDataType
-
type
OpsItemDataValue.Builder type(OpsItemDataType type)
The type of key-value pair. Valid types include
SearchableString
andString
.- Parameters:
type
- The type of key-value pair. Valid types includeSearchableString
andString
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OpsItemDataType
,OpsItemDataType
-
-