Interface AttributeSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AttributeSummary.Builder,AttributeSummary>,SdkBuilder<AttributeSummary.Builder,AttributeSummary>,SdkPojo
- Enclosing class:
- AttributeSummary
public static interface AttributeSummary.Builder extends SdkPojo, CopyableBuilder<AttributeSummary.Builder,AttributeSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttributeSummary.BuilderattributeName(String attributeName)The name of the attribute.AttributeSummary.BuildermostFrequentValue(String mostFrequentValue)The configuration value that is most frequently observed for the attribute.AttributeSummary.BuildernumberOfMatchedAccounts(Integer numberOfMatchedAccounts)The number of accounts with the same configuration value for the attribute that is most frequently observed.AttributeSummary.BuildernumberOfUnmatchedAccounts(Integer numberOfUnmatchedAccounts)The number of accounts with a configuration value different from the most frequently observed value for the attribute.AttributeSummary.BuilderregionalSummaries(Collection<RegionalSummary> regionalSummaries)The summary report for each Region for the attribute.AttributeSummary.BuilderregionalSummaries(Consumer<RegionalSummary.Builder>... regionalSummaries)The summary report for each Region for the attribute.AttributeSummary.BuilderregionalSummaries(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 Detail
-
attributeName
AttributeSummary.Builder attributeName(String 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
AttributeSummary.Builder mostFrequentValue(String 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
AttributeSummary.Builder numberOfMatchedAccounts(Integer 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
AttributeSummary.Builder numberOfUnmatchedAccounts(Integer 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
AttributeSummary.Builder regionalSummaries(Collection<RegionalSummary> 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
AttributeSummary.Builder regionalSummaries(RegionalSummary... 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
AttributeSummary.Builder regionalSummaries(Consumer<RegionalSummary.Builder>... regionalSummaries)
The summary report for each Region for the attribute.
This is a convenience method that creates an instance of theRegionalSummary.Builderavoiding the need to create one manually viaRegionalSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#regionalSummaries(List.) - 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:
#regionalSummaries(java.util.Collection)
-
-