Interface CreateThemeRequest.Builder

    • Method Detail

      • awsAccountId

        CreateThemeRequest.Builder awsAccountId​(String awsAccountId)

        The ID of the Amazon Web Services account where you want to store the new theme.

        Parameters:
        awsAccountId - The ID of the Amazon Web Services account where you want to store the new theme.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • themeId

        CreateThemeRequest.Builder themeId​(String themeId)

        An ID for the theme that you want to create. The theme ID is unique per Amazon Web Services Region in each Amazon Web Services account.

        Parameters:
        themeId - An ID for the theme that you want to create. The theme ID is unique per Amazon Web Services Region in each Amazon Web Services account.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • name

        CreateThemeRequest.Builder name​(String name)

        A display name for the theme.

        Parameters:
        name - A display name for the theme.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • baseThemeId

        CreateThemeRequest.Builder baseThemeId​(String baseThemeId)

        The ID of the theme that a custom theme will inherit from. All themes inherit from one of the starting themes defined by Amazon QuickSight. For a list of the starting themes, use ListThemes or choose Themes from within an analysis.

        Parameters:
        baseThemeId - The ID of the theme that a custom theme will inherit from. All themes inherit from one of the starting themes defined by Amazon QuickSight. For a list of the starting themes, use ListThemes or choose Themes from within an analysis.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • versionDescription

        CreateThemeRequest.Builder versionDescription​(String versionDescription)

        A description of the first version of the theme that you're creating. Every time UpdateTheme is called, a new version is created. Each version of the theme has a description of the version in the VersionDescription field.

        Parameters:
        versionDescription - A description of the first version of the theme that you're creating. Every time UpdateTheme is called, a new version is created. Each version of the theme has a description of the version in the VersionDescription field.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • configuration

        CreateThemeRequest.Builder configuration​(ThemeConfiguration configuration)

        The theme configuration, which contains the theme display properties.

        Parameters:
        configuration - The theme configuration, which contains the theme display properties.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • permissions

        CreateThemeRequest.Builder permissions​(Collection<ResourcePermission> permissions)

        A valid grouping of resource permissions to apply to the new theme.

        Parameters:
        permissions - A valid grouping of resource permissions to apply to the new theme.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • permissions

        CreateThemeRequest.Builder permissions​(ResourcePermission... permissions)

        A valid grouping of resource permissions to apply to the new theme.

        Parameters:
        permissions - A valid grouping of resource permissions to apply to the new theme.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

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

        A map of the key-value pairs for the resource tag or tags that you want to add to the resource.

        Parameters:
        tags - A map of the key-value pairs for the resource tag or tags that you want to add to the resource.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        CreateThemeRequest.Builder tags​(Tag... tags)

        A map of the key-value pairs for the resource tag or tags that you want to add to the resource.

        Parameters:
        tags - A map of the key-value pairs for the resource tag or tags that you want to add to the resource.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

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

        A map of the key-value pairs for the resource tag or tags that you want to add to the resource.

        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)