Interface ChildBlock.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ChildBlock.Builder,ChildBlock>,SdkBuilder<ChildBlock.Builder,ChildBlock>,SdkPojo
- Enclosing class:
- ChildBlock
public static interface ChildBlock.Builder extends SdkPojo, CopyableBuilder<ChildBlock.Builder,ChildBlock>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChildBlock.BuilderbeginOffset(Integer beginOffset)Offset of the start of the child block within its parent block.ChildBlock.BuilderchildBlockId(String childBlockId)Unique identifier for the child block.ChildBlock.BuilderendOffset(Integer endOffset)Offset of the end of the child block within its parent block.-
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
-
childBlockId
ChildBlock.Builder childBlockId(String childBlockId)
Unique identifier for the child block.
- Parameters:
childBlockId- Unique identifier for the child block.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
beginOffset
ChildBlock.Builder beginOffset(Integer beginOffset)
Offset of the start of the child block within its parent block.
- Parameters:
beginOffset- Offset of the start of the child block within its parent block.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endOffset
ChildBlock.Builder endOffset(Integer endOffset)
Offset of the end of the child block within its parent block.
- Parameters:
endOffset- Offset of the end of the child block within its parent block.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-