Interface CreateApplicationRequest.Builder

    • Method Detail

      • applicationProviderArn

        CreateApplicationRequest.Builder applicationProviderArn​(String applicationProviderArn)

        The ARN of the application provider under which the operation will run.

        Parameters:
        applicationProviderArn - The ARN of the application provider under which the operation will run.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • clientToken

        CreateApplicationRequest.Builder clientToken​(String clientToken)

        Specifies a unique, case-sensitive ID that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value.

        If you don't provide this value, then Amazon Web Services generates a random one for you.

        If you retry the operation with the same ClientToken, but with different parameters, the retry fails with an IdempotentParameterMismatch error.

        Parameters:
        clientToken - Specifies a unique, case-sensitive ID that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value.

        If you don't provide this value, then Amazon Web Services generates a random one for you.

        If you retry the operation with the same ClientToken, but with different parameters, the retry fails with an IdempotentParameterMismatch error.

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

        CreateApplicationRequest.Builder description​(String description)

        The description of the .

        Parameters:
        description - The description of the .
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • name

        CreateApplicationRequest.Builder name​(String name)

        The name of the .

        Parameters:
        name - The name of the .
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • portalOptions

        CreateApplicationRequest.Builder portalOptions​(PortalOptions portalOptions)

        A structure that describes the options for the portal associated with an application.

        Parameters:
        portalOptions - A structure that describes the options for the portal associated with an application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

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

        Specifies tags to be attached to the application.

        Parameters:
        tags - Specifies tags to be attached to the application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        CreateApplicationRequest.Builder tags​(Tag... tags)

        Specifies tags to be attached to the application.

        Parameters:
        tags - Specifies tags to be attached to the application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

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

        Specifies tags to be attached to the application.

        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)