public static interface Child.Builder extends CopyableBuilder<Child.Builder,Child>
Modifier and Type | Method and Description |
---|---|
Child.Builder |
id(String id)
The unique identifier (ID) of this child entity.
|
Child.Builder |
type(ChildType type)
The type of this child entity.
|
Child.Builder |
type(String type)
The type of this child entity.
|
copy
applyMutation, build
Child.Builder id(String id)
The unique identifier (ID) of this child entity.
The regex pattern for a child ID string requires one of the following:
Account: a string that consists of exactly 12 digits.
Organizational unit (OU): a string that begins with "ou-" followed by from 4 to 32 lower-case letters or digits (the ID of the root that contains the OU) followed by a second "-" dash and from 8 to 32 additional lower-case letters or digits.
id
- The unique identifier (ID) of this child entity.
The regex pattern for a child ID string requires one of the following:
Account: a string that consists of exactly 12 digits.
Organizational unit (OU): a string that begins with "ou-" followed by from 4 to 32 lower-case letters or digits (the ID of the root that contains the OU) followed by a second "-" dash and from 8 to 32 additional lower-case letters or digits.
Child.Builder type(String type)
The type of this child entity.
Child.Builder type(ChildType type)
The type of this child entity.
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.