Interface OrganizationStatistics.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OrganizationStatistics.Builder,OrganizationStatistics>,SdkBuilder<OrganizationStatistics.Builder,OrganizationStatistics>,SdkPojo
- Enclosing class:
- OrganizationStatistics
public static interface OrganizationStatistics.Builder extends SdkPojo, CopyableBuilder<OrganizationStatistics.Builder,OrganizationStatistics>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OrganizationStatistics.BuilderactiveAccountsCount(Integer activeAccountsCount)Total number of active accounts in your Amazon Web Services organization that are associated with GuardDuty.OrganizationStatistics.BuildercountByFeature(Collection<OrganizationFeatureStatistics> countByFeature)Retrieves the coverage statistics for each feature.OrganizationStatistics.BuildercountByFeature(Consumer<OrganizationFeatureStatistics.Builder>... countByFeature)Retrieves the coverage statistics for each feature.OrganizationStatistics.BuildercountByFeature(OrganizationFeatureStatistics... countByFeature)Retrieves the coverage statistics for each feature.OrganizationStatistics.BuilderenabledAccountsCount(Integer enabledAccountsCount)Total number of accounts that have enabled GuardDuty.OrganizationStatistics.BuildermemberAccountsCount(Integer memberAccountsCount)Total number of accounts in your Amazon Web Services organization that are associated with GuardDuty.OrganizationStatistics.BuildertotalAccountsCount(Integer totalAccountsCount)Total number of accounts in your Amazon Web Services organization.-
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, sdkFields
-
-
-
-
Method Detail
-
totalAccountsCount
OrganizationStatistics.Builder totalAccountsCount(Integer totalAccountsCount)
Total number of accounts in your Amazon Web Services organization.
- Parameters:
totalAccountsCount- Total number of accounts in your Amazon Web Services organization.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
memberAccountsCount
OrganizationStatistics.Builder memberAccountsCount(Integer memberAccountsCount)
Total number of accounts in your Amazon Web Services organization that are associated with GuardDuty.
- Parameters:
memberAccountsCount- Total number of accounts in your Amazon Web Services organization that are associated with GuardDuty.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
activeAccountsCount
OrganizationStatistics.Builder activeAccountsCount(Integer activeAccountsCount)
Total number of active accounts in your Amazon Web Services organization that are associated with GuardDuty.
- Parameters:
activeAccountsCount- Total number of active accounts in your Amazon Web Services organization that are associated with GuardDuty.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
enabledAccountsCount
OrganizationStatistics.Builder enabledAccountsCount(Integer enabledAccountsCount)
Total number of accounts that have enabled GuardDuty.
- Parameters:
enabledAccountsCount- Total number of accounts that have enabled GuardDuty.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
countByFeature
OrganizationStatistics.Builder countByFeature(Collection<OrganizationFeatureStatistics> countByFeature)
Retrieves the coverage statistics for each feature.
- Parameters:
countByFeature- Retrieves the coverage statistics for each feature.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
countByFeature
OrganizationStatistics.Builder countByFeature(OrganizationFeatureStatistics... countByFeature)
Retrieves the coverage statistics for each feature.
- Parameters:
countByFeature- Retrieves the coverage statistics for each feature.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
countByFeature
OrganizationStatistics.Builder countByFeature(Consumer<OrganizationFeatureStatistics.Builder>... countByFeature)
Retrieves the coverage statistics for each feature.
This is a convenience method that creates an instance of theOrganizationFeatureStatistics.Builderavoiding the need to create one manually viaOrganizationFeatureStatistics.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#countByFeature(List.) - Parameters:
countByFeature- a consumer that will call methods onOrganizationFeatureStatistics.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#countByFeature(java.util.Collection)
-
-