Interface PropertySummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PropertySummary.Builder,PropertySummary>,SdkBuilder<PropertySummary.Builder,PropertySummary>,SdkPojo
- Enclosing class:
- PropertySummary
public static interface PropertySummary.Builder extends SdkPojo, CopyableBuilder<PropertySummary.Builder,PropertySummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description PropertySummary.BuilderareAllPropertyValuesReturned(Boolean areAllPropertyValuesReturned)This flag notes whether all values of a list or map type property are returned in the API response.default PropertySummary.Builderdefinition(Consumer<PropertyDefinitionResponse.Builder> definition)This is the schema for the property.PropertySummary.Builderdefinition(PropertyDefinitionResponse definition)This is the schema for the property.PropertySummary.BuilderpropertyName(String propertyName)This is the name of the property.default PropertySummary.Buildervalue(Consumer<DataValue.Builder> value)This is the value for the property.PropertySummary.Buildervalue(DataValue value)This is the value for the property.-
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
-
definition
PropertySummary.Builder definition(PropertyDefinitionResponse definition)
This is the schema for the property.
- Parameters:
definition- This is the schema for the property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
definition
default PropertySummary.Builder definition(Consumer<PropertyDefinitionResponse.Builder> definition)
This is the schema for the property.
This is a convenience method that creates an instance of thePropertyDefinitionResponse.Builderavoiding the need to create one manually viaPropertyDefinitionResponse.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todefinition(PropertyDefinitionResponse).- Parameters:
definition- a consumer that will call methods onPropertyDefinitionResponse.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
definition(PropertyDefinitionResponse)
-
propertyName
PropertySummary.Builder propertyName(String propertyName)
This is the name of the property.
- Parameters:
propertyName- This is the name of the property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
PropertySummary.Builder value(DataValue value)
This is the value for the property.
- Parameters:
value- This is the value for the property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
default PropertySummary.Builder value(Consumer<DataValue.Builder> value)
This is the value for the property.
This is a convenience method that creates an instance of theDataValue.Builderavoiding the need to create one manually viaDataValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tovalue(DataValue).- Parameters:
value- a consumer that will call methods onDataValue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
value(DataValue)
-
areAllPropertyValuesReturned
PropertySummary.Builder areAllPropertyValuesReturned(Boolean areAllPropertyValuesReturned)
This flag notes whether all values of a list or map type property are returned in the API response. The maximum number of values per property returned is 50.
- Parameters:
areAllPropertyValuesReturned- This flag notes whether all values of a list or map type property are returned in the API response. The maximum number of values per property returned is 50.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-