Interface WarningProperty.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<WarningProperty.Builder,WarningProperty>,SdkBuilder<WarningProperty.Builder,WarningProperty>,SdkPojo
- Enclosing class:
- WarningProperty
@Mutable @NotThreadSafe public static interface WarningProperty.Builder extends SdkPojo, CopyableBuilder<WarningProperty.Builder,WarningProperty>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WarningProperty.Builderdescription(String description)The description of the property from the resource provider schema.WarningProperty.BuilderpropertyPath(String propertyPath)The path of the property.WarningProperty.Builderrequired(Boolean required)Iftrue, the specified property is required.-
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
-
propertyPath
WarningProperty.Builder propertyPath(String propertyPath)
The path of the property. For example, if this is for the
S3Bucketmember of theCodeproperty, the property path would beCode/S3Bucket.- Parameters:
propertyPath- The path of the property. For example, if this is for theS3Bucketmember of theCodeproperty, the property path would beCode/S3Bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
required
WarningProperty.Builder required(Boolean required)
If
true, the specified property is required.- Parameters:
required- Iftrue, the specified property is required.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
WarningProperty.Builder description(String description)
The description of the property from the resource provider schema.
- Parameters:
description- The description of the property from the resource provider schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-