Interface UpdateThemeRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdateThemeRequest.Builder,UpdateThemeRequest>
,QuickSightRequest.Builder
,SdkBuilder<UpdateThemeRequest.Builder,UpdateThemeRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- UpdateThemeRequest
public static interface UpdateThemeRequest.Builder extends QuickSightRequest.Builder, SdkPojo, CopyableBuilder<UpdateThemeRequest.Builder,UpdateThemeRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateThemeRequest.Builder
awsAccountId(String awsAccountId)
The ID of the Amazon Web Services account that contains the theme that you're updating.UpdateThemeRequest.Builder
baseThemeId(String baseThemeId)
The theme ID, defined by Amazon QuickSight, that a custom theme inherits from.default UpdateThemeRequest.Builder
configuration(Consumer<ThemeConfiguration.Builder> configuration)
The theme configuration, which contains the theme display properties.UpdateThemeRequest.Builder
configuration(ThemeConfiguration configuration)
The theme configuration, which contains the theme display properties.UpdateThemeRequest.Builder
name(String name)
The name for the theme.UpdateThemeRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
UpdateThemeRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
UpdateThemeRequest.Builder
themeId(String themeId)
The ID for the theme.UpdateThemeRequest.Builder
versionDescription(String versionDescription)
A description of the theme version that you're updating Every time that you callUpdateTheme
, you create a new version of the theme.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.quicksight.model.QuickSightRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
awsAccountId
UpdateThemeRequest.Builder awsAccountId(String awsAccountId)
The ID of the Amazon Web Services account that contains the theme that you're updating.
- Parameters:
awsAccountId
- The ID of the Amazon Web Services account that contains the theme that you're updating.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
themeId
UpdateThemeRequest.Builder themeId(String themeId)
The ID for the theme.
- Parameters:
themeId
- The ID for the theme.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
UpdateThemeRequest.Builder name(String name)
The name for the theme.
- Parameters:
name
- The name for the theme.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
baseThemeId
UpdateThemeRequest.Builder baseThemeId(String baseThemeId)
The theme ID, defined by Amazon QuickSight, that a custom theme inherits from. All themes initially inherit from a default Amazon QuickSight theme.
- Parameters:
baseThemeId
- The theme ID, defined by Amazon QuickSight, that a custom theme inherits from. All themes initially inherit from a default Amazon QuickSight theme.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
versionDescription
UpdateThemeRequest.Builder versionDescription(String versionDescription)
A description of the theme version that you're updating Every time that you call
UpdateTheme
, you create a new version of the theme. Each version of the theme maintains a description of the version inVersionDescription
.- Parameters:
versionDescription
- A description of the theme version that you're updating Every time that you callUpdateTheme
, you create a new version of the theme. Each version of the theme maintains a description of the version inVersionDescription
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configuration
UpdateThemeRequest.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.
-
configuration
default UpdateThemeRequest.Builder configuration(Consumer<ThemeConfiguration.Builder> configuration)
The theme configuration, which contains the theme display properties.
This is a convenience method that creates an instance of theThemeConfiguration.Builder
avoiding the need to create one manually viaThemeConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toconfiguration(ThemeConfiguration)
.- Parameters:
configuration
- a consumer that will call methods onThemeConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
configuration(ThemeConfiguration)
-
overrideConfiguration
UpdateThemeRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateThemeRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-