Interface UpdateOrganizationalUnitRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateOrganizationalUnitRequest.Builder,UpdateOrganizationalUnitRequest>,OrganizationsRequest.Builder,SdkBuilder<UpdateOrganizationalUnitRequest.Builder,UpdateOrganizationalUnitRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateOrganizationalUnitRequest
public static interface UpdateOrganizationalUnitRequest.Builder extends OrganizationsRequest.Builder, SdkPojo, CopyableBuilder<UpdateOrganizationalUnitRequest.Builder,UpdateOrganizationalUnitRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateOrganizationalUnitRequest.Buildername(String name)The new name that you want to assign to the OU.UpdateOrganizationalUnitRequest.BuilderorganizationalUnitId(String organizationalUnitId)The unique identifier (ID) of the OU that you want to rename.UpdateOrganizationalUnitRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateOrganizationalUnitRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.organizations.model.OrganizationsRequest.Builder
build
-
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
-
organizationalUnitId
UpdateOrganizationalUnitRequest.Builder organizationalUnitId(String organizationalUnitId)
The unique identifier (ID) of the OU that you want to rename. You can get the ID from the ListOrganizationalUnitsForParent operation.
The regex pattern for an organizational unit ID string requires "ou-" followed by from 4 to 32 lowercase letters or digits (the ID of the root that contains the OU). This string is followed by a second "-" dash and from 8 to 32 additional lowercase letters or digits.
- Parameters:
organizationalUnitId- The unique identifier (ID) of the OU that you want to rename. You can get the ID from the ListOrganizationalUnitsForParent operation.The regex pattern for an organizational unit ID string requires "ou-" followed by from 4 to 32 lowercase letters or digits (the ID of the root that contains the OU). This string is followed by a second "-" dash and from 8 to 32 additional lowercase letters or digits.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
UpdateOrganizationalUnitRequest.Builder name(String name)
The new name that you want to assign to the OU.
The regex pattern that is used to validate this parameter is a string of any of the characters in the ASCII character range.
- Parameters:
name- The new name that you want to assign to the OU.The regex pattern that is used to validate this parameter is a string of any of the characters in the ASCII character range.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UpdateOrganizationalUnitRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateOrganizationalUnitRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-