Interface OrganizationFeatureConfigurationResult.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OrganizationFeatureConfigurationResult.Builder,OrganizationFeatureConfigurationResult>,SdkBuilder<OrganizationFeatureConfigurationResult.Builder,OrganizationFeatureConfigurationResult>,SdkPojo
- Enclosing class:
- OrganizationFeatureConfigurationResult
public static interface OrganizationFeatureConfigurationResult.Builder extends SdkPojo, CopyableBuilder<OrganizationFeatureConfigurationResult.Builder,OrganizationFeatureConfigurationResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OrganizationFeatureConfigurationResult.BuilderadditionalConfiguration(Collection<OrganizationAdditionalConfigurationResult> additionalConfiguration)The additional configuration that is configured for the member accounts within the organization.OrganizationFeatureConfigurationResult.BuilderadditionalConfiguration(Consumer<OrganizationAdditionalConfigurationResult.Builder>... additionalConfiguration)The additional configuration that is configured for the member accounts within the organization.OrganizationFeatureConfigurationResult.BuilderadditionalConfiguration(OrganizationAdditionalConfigurationResult... additionalConfiguration)The additional configuration that is configured for the member accounts within the organization.OrganizationFeatureConfigurationResult.BuilderautoEnable(String autoEnable)Describes the status of the feature that is configured for the member accounts within the organization.OrganizationFeatureConfigurationResult.BuilderautoEnable(OrgFeatureStatus autoEnable)Describes the status of the feature that is configured for the member accounts within the organization.OrganizationFeatureConfigurationResult.Buildername(String name)The name of the feature that is configured for the member accounts within the organization.OrganizationFeatureConfigurationResult.Buildername(OrgFeature name)The name of the feature that is configured for the member accounts within 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
OrganizationFeatureConfigurationResult.Builder name(String name)
The name of the feature that is configured for the member accounts within the organization.
- Parameters:
name- The name of the feature that is configured for the member accounts within the organization.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OrgFeature,OrgFeature
-
name
OrganizationFeatureConfigurationResult.Builder name(OrgFeature name)
The name of the feature that is configured for the member accounts within the organization.
- Parameters:
name- The name of the feature that is configured for the member accounts within the organization.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OrgFeature,OrgFeature
-
autoEnable
OrganizationFeatureConfigurationResult.Builder autoEnable(String autoEnable)
Describes the status of the feature that is configured for the member accounts within the 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. -
NONE: Indicates that the feature will not be automatically enabled for any account in the organization. In this case, each account will be managed individually by the administrator.
- Parameters:
autoEnable- Describes the status of the feature that is configured for the member accounts within the 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. -
NONE: Indicates that the feature will not be automatically enabled for any account in the organization. In this case, each account will be managed individually by the administrator.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OrgFeatureStatus,OrgFeatureStatus
-
-
autoEnable
OrganizationFeatureConfigurationResult.Builder autoEnable(OrgFeatureStatus autoEnable)
Describes the status of the feature that is configured for the member accounts within the 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. -
NONE: Indicates that the feature will not be automatically enabled for any account in the organization. In this case, each account will be managed individually by the administrator.
- Parameters:
autoEnable- Describes the status of the feature that is configured for the member accounts within the 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. -
NONE: Indicates that the feature will not be automatically enabled for any account in the organization. In this case, each account will be managed individually by the administrator.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OrgFeatureStatus,OrgFeatureStatus
-
-
additionalConfiguration
OrganizationFeatureConfigurationResult.Builder additionalConfiguration(Collection<OrganizationAdditionalConfigurationResult> additionalConfiguration)
The additional configuration that is configured for the member accounts within the organization.
- Parameters:
additionalConfiguration- The additional configuration that is configured for the member accounts within the organization.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
additionalConfiguration
OrganizationFeatureConfigurationResult.Builder additionalConfiguration(OrganizationAdditionalConfigurationResult... additionalConfiguration)
The additional configuration that is configured for the member accounts within the organization.
- Parameters:
additionalConfiguration- The additional configuration that is configured for the member accounts within the organization.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
additionalConfiguration
OrganizationFeatureConfigurationResult.Builder additionalConfiguration(Consumer<OrganizationAdditionalConfigurationResult.Builder>... additionalConfiguration)
The additional configuration that is configured for the member accounts within the organization.
This is a convenience method that creates an instance of theOrganizationAdditionalConfigurationResult.Builderavoiding the need to create one manually viaOrganizationAdditionalConfigurationResult.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 onOrganizationAdditionalConfigurationResult.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#additionalConfiguration(java.util.Collection)
-
-