public static interface SegmentGroupList.Builder extends SdkPojo, CopyableBuilder<SegmentGroupList.Builder,SegmentGroupList>
Modifier and Type | Method and Description |
---|---|
SegmentGroupList.Builder |
groups(Collection<SegmentGroup> groups)
A set of segment criteria to evaluate.
|
SegmentGroupList.Builder |
groups(Consumer<SegmentGroup.Builder>... groups)
A set of segment criteria to evaluate.
|
SegmentGroupList.Builder |
groups(SegmentGroup... groups)
A set of segment criteria to evaluate.
|
SegmentGroupList.Builder |
include(Include include)
Specify how to handle multiple segment groups.
|
SegmentGroupList.Builder |
include(String include)
Specify how to handle multiple segment groups.
|
copy
applyMutation, build
SegmentGroupList.Builder groups(Collection<SegmentGroup> groups)
groups
- A set of segment criteria to evaluate.SegmentGroupList.Builder groups(SegmentGroup... groups)
groups
- A set of segment criteria to evaluate.SegmentGroupList.Builder groups(Consumer<SegmentGroup.Builder>... groups)
.Builder
avoiding the need to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its
result is passed to #groups(List)
.groups
- a consumer that will call methods on List.Builder
#groups(List)
SegmentGroupList.Builder include(String include)
include
- Specify how to handle multiple segment groups. For example, if the segment includes three segment
groups, should the resulting segment include endpoints that are matched by all, any, or none of the
segment groups you created. Acceptable values: ALL, ANY, or NONE.Include
,
Include
SegmentGroupList.Builder include(Include include)
include
- Specify how to handle multiple segment groups. For example, if the segment includes three segment
groups, should the resulting segment include endpoints that are matched by all, any, or none of the
segment groups you created. Acceptable values: ALL, ANY, or NONE.Include
,
Include
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.