Interface CreatePolicyRequest.Builder

    • Method Detail

      • content

        CreatePolicyRequest.Builder content​(String content)

        The policy text content to add to the new policy. The text that you supply must adhere to the rules of the policy type you specify in the Type parameter.

        The maximum size of a policy document depends on the policy's type. For more information, see Maximum and minimum values in the Organizations User Guide.

        Parameters:
        content - The policy text content to add to the new policy. The text that you supply must adhere to the rules of the policy type you specify in the Type parameter.

        The maximum size of a policy document depends on the policy's type. For more information, see Maximum and minimum values in the Organizations User Guide.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • description

        CreatePolicyRequest.Builder description​(String description)

        An optional description to assign to the policy.

        Parameters:
        description - An optional description to assign to the policy.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • name

        CreatePolicyRequest.Builder name​(String name)

        The friendly name to assign to the policy.

        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 friendly name to assign to the policy.

        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.
      • tags

        CreatePolicyRequest.Builder tags​(Collection<Tag> tags)

        A list of tags that you want to attach to the newly created policy. For each tag in the list, you must specify both a tag key and a value. You can set the value to an empty string, but you can't set it to null. For more information about tagging, see Tagging Organizations resources in the Organizations User Guide.

        If any one of the tags is not valid or if you exceed the allowed number of tags for a policy, then the entire request fails and the policy is not created.

        Parameters:
        tags - A list of tags that you want to attach to the newly created policy. For each tag in the list, you must specify both a tag key and a value. You can set the value to an empty string, but you can't set it to null. For more information about tagging, see Tagging Organizations resources in the Organizations User Guide.

        If any one of the tags is not valid or if you exceed the allowed number of tags for a policy, then the entire request fails and the policy is not created.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        CreatePolicyRequest.Builder tags​(Tag... tags)

        A list of tags that you want to attach to the newly created policy. For each tag in the list, you must specify both a tag key and a value. You can set the value to an empty string, but you can't set it to null. For more information about tagging, see Tagging Organizations resources in the Organizations User Guide.

        If any one of the tags is not valid or if you exceed the allowed number of tags for a policy, then the entire request fails and the policy is not created.

        Parameters:
        tags - A list of tags that you want to attach to the newly created policy. For each tag in the list, you must specify both a tag key and a value. You can set the value to an empty string, but you can't set it to null. For more information about tagging, see Tagging Organizations resources in the Organizations User Guide.

        If any one of the tags is not valid or if you exceed the allowed number of tags for a policy, then the entire request fails and the policy is not created.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        CreatePolicyRequest.Builder tags​(Consumer<Tag.Builder>... tags)

        A list of tags that you want to attach to the newly created policy. For each tag in the list, you must specify both a tag key and a value. You can set the value to an empty string, but you can't set it to null. For more information about tagging, see Tagging Organizations resources in the Organizations User Guide.

        If any one of the tags is not valid or if you exceed the allowed number of tags for a policy, then the entire request fails and the policy is not created.

        This is a convenience method that creates an instance of the Tag.Builder avoiding the need to create one manually via Tag.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #tags(List).

        Parameters:
        tags - a consumer that will call methods on Tag.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #tags(java.util.Collection)