Interface CreateApplicationRequest.Builder

    • Method Detail

      • attachmentsConfiguration

        CreateApplicationRequest.Builder attachmentsConfiguration​(AttachmentsConfiguration attachmentsConfiguration)

        An option to allow end users to upload files directly during chat.

        Parameters:
        attachmentsConfiguration - An option to allow end users to upload files directly during chat.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • clientToken

        CreateApplicationRequest.Builder clientToken​(String clientToken)

        A token that you provide to identify the request to create your Amazon Q application.

        Parameters:
        clientToken - A token that you provide to identify the request to create your Amazon Q application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • description

        CreateApplicationRequest.Builder description​(String description)

        A description for the Amazon Q application.

        Parameters:
        description - A description for the Amazon Q application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • displayName

        CreateApplicationRequest.Builder displayName​(String displayName)

        A name for the Amazon Q application.

        Parameters:
        displayName - A name for the Amazon Q application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • encryptionConfiguration

        CreateApplicationRequest.Builder encryptionConfiguration​(EncryptionConfiguration encryptionConfiguration)

        The identifier of the KMS key that is used to encrypt your data. Amazon Q doesn't support asymmetric keys.

        Parameters:
        encryptionConfiguration - The identifier of the KMS key that is used to encrypt your data. Amazon Q doesn't support asymmetric keys.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • roleArn

        CreateApplicationRequest.Builder roleArn​(String roleArn)

        The Amazon Resource Name (ARN) of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.

        Parameters:
        roleArn - The Amazon Resource Name (ARN) of an IAM role with permissions to access your Amazon CloudWatch logs and metrics.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

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

        A list of key-value pairs that identify or categorize your Amazon Q application. You can also use tags to help control access to the application. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @.

        Parameters:
        tags - A list of key-value pairs that identify or categorize your Amazon Q application. You can also use tags to help control access to the application. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

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

        A list of key-value pairs that identify or categorize your Amazon Q application. You can also use tags to help control access to the application. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @.

        Parameters:
        tags - A list of key-value pairs that identify or categorize your Amazon Q application. You can also use tags to help control access to the application. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

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

        A list of key-value pairs that identify or categorize your Amazon Q application. You can also use tags to help control access to the application. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @.

        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)