Interface OrganizationFeatureConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OrganizationFeatureConfiguration.Builder,OrganizationFeatureConfiguration>,SdkBuilder<OrganizationFeatureConfiguration.Builder,OrganizationFeatureConfiguration>,SdkPojo
- Enclosing class:
- OrganizationFeatureConfiguration
public static interface OrganizationFeatureConfiguration.Builder extends SdkPojo, CopyableBuilder<OrganizationFeatureConfiguration.Builder,OrganizationFeatureConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OrganizationFeatureConfiguration.BuilderadditionalConfiguration(Collection<OrganizationAdditionalConfiguration> additionalConfiguration)The additional information that will be configured for the organization.OrganizationFeatureConfiguration.BuilderadditionalConfiguration(Consumer<OrganizationAdditionalConfiguration.Builder>... additionalConfiguration)The additional information that will be configured for the organization.OrganizationFeatureConfiguration.BuilderadditionalConfiguration(OrganizationAdditionalConfiguration... additionalConfiguration)The additional information that will be configured for the organization.OrganizationFeatureConfiguration.BuilderautoEnable(String autoEnable)Describes the status of the feature that is configured for the member accounts within the organization.OrganizationFeatureConfiguration.BuilderautoEnable(OrgFeatureStatus autoEnable)Describes the status of the feature that is configured for the member accounts within the organization.OrganizationFeatureConfiguration.Buildername(String name)The name of the feature that will be configured for the organization.OrganizationFeatureConfiguration.Buildername(OrgFeature name)The name of the feature that will be configured for the 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
-
name
OrganizationFeatureConfiguration.Builder name(String name)
The name of the feature that will be configured for the organization.
- Parameters:
name- The name of the feature that will be configured for the organization.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OrgFeature,OrgFeature
-
name
OrganizationFeatureConfiguration.Builder name(OrgFeature name)
The name of the feature that will be configured for the organization.
- Parameters:
name- The name of the feature that will be configured for the organization.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OrgFeature,OrgFeature
-
autoEnable
OrganizationFeatureConfiguration.Builder autoEnable(String autoEnable)
Describes the status of the feature that is configured for the member accounts within the organization. One of the following values is the status for the entire organization:
-
NEW: Indicates that when a new account joins the organization, they will have the feature enabled automatically. -
ALL: Indicates that all accounts in the organization have the feature enabled automatically. This includesNEWaccounts that join the organization and accounts that may have been suspended or removed from the organization in GuardDuty.It may take up to 24 hours to update the configuration for all the member accounts.
-
NONE: Indicates that the feature will not be automatically enabled for any account in the organization. The administrator must manage the feature for each account individually.
- Parameters:
autoEnable- Describes the status of the feature that is configured for the member accounts within the organization. One of the following values is the status for the entire organization:-
NEW: Indicates that when a new account joins the organization, they will have the feature enabled automatically. -
ALL: Indicates that all accounts in the organization have the feature enabled automatically. This includesNEWaccounts that join the organization and accounts that may have been suspended or removed from the organization in GuardDuty.It may take up to 24 hours to update the configuration for all the member accounts.
-
NONE: Indicates that the feature will not be automatically enabled for any account in the organization. The administrator must manage the feature for each account individually.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OrgFeatureStatus,OrgFeatureStatus
-
-
autoEnable
OrganizationFeatureConfiguration.Builder autoEnable(OrgFeatureStatus autoEnable)
Describes the status of the feature that is configured for the member accounts within the organization. One of the following values is the status for the entire organization:
-
NEW: Indicates that when a new account joins the organization, they will have the feature enabled automatically. -
ALL: Indicates that all accounts in the organization have the feature enabled automatically. This includesNEWaccounts that join the organization and accounts that may have been suspended or removed from the organization in GuardDuty.It may take up to 24 hours to update the configuration for all the member accounts.
-
NONE: Indicates that the feature will not be automatically enabled for any account in the organization. The administrator must manage the feature for each account individually.
- Parameters:
autoEnable- Describes the status of the feature that is configured for the member accounts within the organization. One of the following values is the status for the entire organization:-
NEW: Indicates that when a new account joins the organization, they will have the feature enabled automatically. -
ALL: Indicates that all accounts in the organization have the feature enabled automatically. This includesNEWaccounts that join the organization and accounts that may have been suspended or removed from the organization in GuardDuty.It may take up to 24 hours to update the configuration for all the member accounts.
-
NONE: Indicates that the feature will not be automatically enabled for any account in the organization. The administrator must manage the feature for each account individually.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OrgFeatureStatus,OrgFeatureStatus
-
-
additionalConfiguration
OrganizationFeatureConfiguration.Builder additionalConfiguration(Collection<OrganizationAdditionalConfiguration> additionalConfiguration)
The additional information that will be configured for the organization.
- Parameters:
additionalConfiguration- The additional information that will be configured for the organization.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
additionalConfiguration
OrganizationFeatureConfiguration.Builder additionalConfiguration(OrganizationAdditionalConfiguration... additionalConfiguration)
The additional information that will be configured for the organization.
- Parameters:
additionalConfiguration- The additional information that will be configured for the organization.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
additionalConfiguration
OrganizationFeatureConfiguration.Builder additionalConfiguration(Consumer<OrganizationAdditionalConfiguration.Builder>... additionalConfiguration)
The additional information that will be configured for the organization.
This is a convenience method that creates an instance of theOrganizationAdditionalConfiguration.Builderavoiding the need to create one manually viaOrganizationAdditionalConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#additionalConfiguration(List.) - Parameters:
additionalConfiguration- a consumer that will call methods onOrganizationAdditionalConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#additionalConfiguration(java.util.Collection)
-
-