Interface PropertyValidationExceptionProperty.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PropertyValidationExceptionProperty.Builder,PropertyValidationExceptionProperty>,SdkBuilder<PropertyValidationExceptionProperty.Builder,PropertyValidationExceptionProperty>,SdkPojo
- Enclosing class:
- PropertyValidationExceptionProperty
public static interface PropertyValidationExceptionProperty.Builder extends SdkPojo, CopyableBuilder<PropertyValidationExceptionProperty.Builder,PropertyValidationExceptionProperty>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PropertyValidationExceptionProperty.Buildermessage(String message)A message describing why the property is not valid.PropertyValidationExceptionProperty.BuilderpropertyPath(String propertyPath)The full property path.PropertyValidationExceptionProperty.Builderreason(String reason)Why the property is not valid.PropertyValidationExceptionProperty.Builderreason(PropertyValidationExceptionReason reason)Why the property is not valid.-
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
-
propertyPath
PropertyValidationExceptionProperty.Builder propertyPath(String propertyPath)
The full property path.
- Parameters:
propertyPath- The full property path.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reason
PropertyValidationExceptionProperty.Builder reason(String reason)
Why the property is not valid.
- Parameters:
reason- Why the property is not valid.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PropertyValidationExceptionReason,PropertyValidationExceptionReason
-
reason
PropertyValidationExceptionProperty.Builder reason(PropertyValidationExceptionReason reason)
Why the property is not valid.
- Parameters:
reason- Why the property is not valid.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PropertyValidationExceptionReason,PropertyValidationExceptionReason
-
message
PropertyValidationExceptionProperty.Builder message(String message)
A message describing why the property is not valid.
- Parameters:
message- A message describing why the property is not valid.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-