Interface RoadSnapNotice.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RoadSnapNotice.Builder,RoadSnapNotice>,SdkBuilder<RoadSnapNotice.Builder,RoadSnapNotice>,SdkPojo
- Enclosing class:
- RoadSnapNotice
public static interface RoadSnapNotice.Builder extends SdkPojo, CopyableBuilder<RoadSnapNotice.Builder,RoadSnapNotice>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RoadSnapNotice.Buildercode(String code)Code corresponding to the issue.RoadSnapNotice.Buildercode(RoadSnapNoticeCode code)Code corresponding to the issue.RoadSnapNotice.Buildertitle(String title)The notice title.RoadSnapNotice.BuildertracePointIndexes(Integer... tracePointIndexes)TracePoint indices for which the provided notice code corresponds to.RoadSnapNotice.BuildertracePointIndexes(Collection<Integer> tracePointIndexes)TracePoint indices for which the provided notice code corresponds to.-
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
-
code
RoadSnapNotice.Builder code(String code)
Code corresponding to the issue.
- Parameters:
code- Code corresponding to the issue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RoadSnapNoticeCode,RoadSnapNoticeCode
-
code
RoadSnapNotice.Builder code(RoadSnapNoticeCode code)
Code corresponding to the issue.
- Parameters:
code- Code corresponding to the issue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RoadSnapNoticeCode,RoadSnapNoticeCode
-
title
RoadSnapNotice.Builder title(String title)
The notice title.
- Parameters:
title- The notice title.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tracePointIndexes
RoadSnapNotice.Builder tracePointIndexes(Collection<Integer> tracePointIndexes)
TracePoint indices for which the provided notice code corresponds to.
- Parameters:
tracePointIndexes- TracePoint indices for which the provided notice code corresponds to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tracePointIndexes
RoadSnapNotice.Builder tracePointIndexes(Integer... tracePointIndexes)
TracePoint indices for which the provided notice code corresponds to.
- Parameters:
tracePointIndexes- TracePoint indices for which the provided notice code corresponds to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-