Interface AggregateLogGroupSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AggregateLogGroupSummary.Builder,AggregateLogGroupSummary>,SdkBuilder<AggregateLogGroupSummary.Builder,AggregateLogGroupSummary>,SdkPojo
- Enclosing class:
- AggregateLogGroupSummary
@Mutable @NotThreadSafe public static interface AggregateLogGroupSummary.Builder extends SdkPojo, CopyableBuilder<AggregateLogGroupSummary.Builder,AggregateLogGroupSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AggregateLogGroupSummary.BuildergroupingIdentifiers(Collection<GroupingIdentifier> groupingIdentifiers)An array of key-value pairs that identify the data source characteristics used to group the log groups.AggregateLogGroupSummary.BuildergroupingIdentifiers(Consumer<GroupingIdentifier.Builder>... groupingIdentifiers)An array of key-value pairs that identify the data source characteristics used to group the log groups.AggregateLogGroupSummary.BuildergroupingIdentifiers(GroupingIdentifier... groupingIdentifiers)An array of key-value pairs that identify the data source characteristics used to group the log groups.AggregateLogGroupSummary.BuilderlogGroupCount(Integer logGroupCount)The number of log groups in this aggregate summary group.-
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
-
logGroupCount
AggregateLogGroupSummary.Builder logGroupCount(Integer logGroupCount)
The number of log groups in this aggregate summary group.
- Parameters:
logGroupCount- The number of log groups in this aggregate summary group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
groupingIdentifiers
AggregateLogGroupSummary.Builder groupingIdentifiers(Collection<GroupingIdentifier> groupingIdentifiers)
An array of key-value pairs that identify the data source characteristics used to group the log groups.
The size and content of this array depends on the
groupByparameter specified in the request.- Parameters:
groupingIdentifiers- An array of key-value pairs that identify the data source characteristics used to group the log groups.The size and content of this array depends on the
groupByparameter specified in the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
groupingIdentifiers
AggregateLogGroupSummary.Builder groupingIdentifiers(GroupingIdentifier... groupingIdentifiers)
An array of key-value pairs that identify the data source characteristics used to group the log groups.
The size and content of this array depends on the
groupByparameter specified in the request.- Parameters:
groupingIdentifiers- An array of key-value pairs that identify the data source characteristics used to group the log groups.The size and content of this array depends on the
groupByparameter specified in the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
groupingIdentifiers
AggregateLogGroupSummary.Builder groupingIdentifiers(Consumer<GroupingIdentifier.Builder>... groupingIdentifiers)
An array of key-value pairs that identify the data source characteristics used to group the log groups.
The size and content of this array depends on the
This is a convenience method that creates an instance of thegroupByparameter specified in the request.GroupingIdentifier.Builderavoiding the need to create one manually viaGroupingIdentifier.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#groupingIdentifiers(List.) - Parameters:
groupingIdentifiers- a consumer that will call methods onGroupingIdentifier.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#groupingIdentifiers(java.util.Collection)
-
-