Interface UpdateThemeRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateThemeRequest.Builder,UpdateThemeRequest>,QuickSightRequest.Builder,SdkBuilder<UpdateThemeRequest.Builder,UpdateThemeRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateThemeRequest
@Mutable @NotThreadSafe 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.BuilderawsAccountId(String awsAccountId)The ID of the Amazon Web Services account that contains the theme that you're updating.UpdateThemeRequest.BuilderbaseThemeId(String baseThemeId)The theme ID, defined by Amazon QuickSight, that a custom theme inherits from.default UpdateThemeRequest.Builderconfiguration(Consumer<ThemeConfiguration.Builder> configuration)The theme configuration, which contains the theme display properties.UpdateThemeRequest.Builderconfiguration(ThemeConfiguration configuration)The theme configuration, which contains the theme display properties.UpdateThemeRequest.Buildername(String name)The name for the theme.UpdateThemeRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateThemeRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateThemeRequest.BuilderthemeId(String themeId)The ID for the theme.UpdateThemeRequest.BuilderversionDescription(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, sdkFieldNameToField, 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 QuickSight theme.
- Parameters:
baseThemeId- The theme ID, defined by Amazon QuickSight, that a custom theme inherits from. All themes initially inherit from a default 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.Builderavoiding the need to create one manually viaThemeConfiguration.builder().When the
Consumercompletes,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:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateThemeRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-