Interface AttributeSummary.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<AttributeSummary.Builder,
,AttributeSummary> SdkBuilder<AttributeSummary.Builder,
,AttributeSummary> SdkPojo
- Enclosing class:
AttributeSummary
@Mutable
@NotThreadSafe
public static interface AttributeSummary.Builder
extends SdkPojo, CopyableBuilder<AttributeSummary.Builder,AttributeSummary>
-
Method Summary
Modifier and TypeMethodDescriptionattributeName
(String attributeName) The name of the attribute.mostFrequentValue
(String mostFrequentValue) The configuration value that is most frequently observed for the attribute.numberOfMatchedAccounts
(Integer numberOfMatchedAccounts) The number of accounts with the same configuration value for the attribute that is most frequently observed.numberOfUnmatchedAccounts
(Integer numberOfUnmatchedAccounts) The number of accounts with a configuration value different from the most frequently observed value for the attribute.regionalSummaries
(Collection<RegionalSummary> regionalSummaries) The summary report for each Region for the attribute.regionalSummaries
(Consumer<RegionalSummary.Builder>... regionalSummaries) The summary report for each Region for the attribute.regionalSummaries
(RegionalSummary... regionalSummaries) The summary report for each Region for the attribute.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 Details
-
attributeName
The name of the attribute.
- Parameters:
attributeName
- The name of the attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mostFrequentValue
The configuration value that is most frequently observed for the attribute.
- Parameters:
mostFrequentValue
- The configuration value that is most frequently observed for the attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numberOfMatchedAccounts
The number of accounts with the same configuration value for the attribute that is most frequently observed.
- Parameters:
numberOfMatchedAccounts
- The number of accounts with the same configuration value for the attribute that is most frequently observed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numberOfUnmatchedAccounts
The number of accounts with a configuration value different from the most frequently observed value for the attribute.
- Parameters:
numberOfUnmatchedAccounts
- The number of accounts with a configuration value different from the most frequently observed value for the attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
regionalSummaries
The summary report for each Region for the attribute.
- Parameters:
regionalSummaries
- The summary report for each Region for the attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
regionalSummaries
The summary report for each Region for the attribute.
- Parameters:
regionalSummaries
- The summary report for each Region for the attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
regionalSummaries
The summary report for each Region for the attribute.
This is a convenience method that creates an instance of theRegionalSummary.Builder
avoiding the need to create one manually viaRegionalSummary.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toregionalSummaries(List<RegionalSummary>)
.- Parameters:
regionalSummaries
- a consumer that will call methods onRegionalSummary.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-