Interface OrganizationDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OrganizationDetails.Builder,OrganizationDetails>,SdkBuilder<OrganizationDetails.Builder,OrganizationDetails>,SdkPojo
- Enclosing class:
- OrganizationDetails
public static interface OrganizationDetails.Builder extends SdkPojo, CopyableBuilder<OrganizationDetails.Builder,OrganizationDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default OrganizationDetails.BuilderorganizationStatistics(Consumer<OrganizationStatistics.Builder> organizationStatistics)Information about the GuardDuty coverage statistics for members in your Amazon Web Services organization.OrganizationDetails.BuilderorganizationStatistics(OrganizationStatistics organizationStatistics)Information about the GuardDuty coverage statistics for members in your Amazon Web Services organization.OrganizationDetails.BuilderupdatedAt(Instant updatedAt)The timestamp at which the organization statistics was last updated.-
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
-
updatedAt
OrganizationDetails.Builder updatedAt(Instant updatedAt)
The timestamp at which the organization statistics was last updated. This is in UTC format.
- Parameters:
updatedAt- The timestamp at which the organization statistics was last updated. This is in UTC format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
organizationStatistics
OrganizationDetails.Builder organizationStatistics(OrganizationStatistics organizationStatistics)
Information about the GuardDuty coverage statistics for members in your Amazon Web Services organization.
- Parameters:
organizationStatistics- Information about the GuardDuty coverage statistics for members in your Amazon Web Services organization.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
organizationStatistics
default OrganizationDetails.Builder organizationStatistics(Consumer<OrganizationStatistics.Builder> organizationStatistics)
Information about the GuardDuty coverage statistics for members in your Amazon Web Services organization.
This is a convenience method that creates an instance of theOrganizationStatistics.Builderavoiding the need to create one manually viaOrganizationStatistics.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toorganizationStatistics(OrganizationStatistics).- Parameters:
organizationStatistics- a consumer that will call methods onOrganizationStatistics.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
organizationStatistics(OrganizationStatistics)
-
-