Interface SchemaChangeDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SchemaChangeDetails.Builder,SchemaChangeDetails>,SdkBuilder<SchemaChangeDetails.Builder,SchemaChangeDetails>,SdkPojo
- Enclosing class:
- SchemaChangeDetails
public static interface SchemaChangeDetails.Builder extends SdkPojo, CopyableBuilder<SchemaChangeDetails.Builder,SchemaChangeDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SchemaChangeDetails.Builderdescription(String description)Description of what's changing about this field.SchemaChangeDetails.Buildername(String name)Name of the changing field.SchemaChangeDetails.Buildertype(String type)Is the field being added, removed, or modified?SchemaChangeDetails.Buildertype(SchemaChangeType type)Is the field being added, removed, or modified?-
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
-
name
SchemaChangeDetails.Builder name(String name)
Name of the changing field. This value can be up to 255 characters long.
- Parameters:
name- Name of the changing field. This value can be up to 255 characters long.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
SchemaChangeDetails.Builder type(String type)
Is the field being added, removed, or modified?
- Parameters:
type- Is the field being added, removed, or modified?- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SchemaChangeType,SchemaChangeType
-
type
SchemaChangeDetails.Builder type(SchemaChangeType type)
Is the field being added, removed, or modified?
- Parameters:
type- Is the field being added, removed, or modified?- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SchemaChangeType,SchemaChangeType
-
description
SchemaChangeDetails.Builder description(String description)
Description of what's changing about this field. This value can be up to 512 characters long.
- Parameters:
description- Description of what's changing about this field. This value can be up to 512 characters long.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-