CfnTheme
- class aws_cdk.aws_quicksight.CfnTheme(scope, id, *, aws_account_id, base_theme_id, configuration, name, theme_id, permissions=None, tags=None, version_description=None)
- Bases: - CfnResource- Creates a theme. - A theme is set of configuration options for color and layout. Themes apply to analyses and dashboards. For more information, see Using Themes in Amazon Quick Suite in the Amazon Quick Suite User Guide . - See:
- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-theme.html 
- CloudformationResource:
- AWS::QuickSight::Theme 
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_quicksight as quicksight cfn_theme = quicksight.CfnTheme(self, "MyCfnTheme", aws_account_id="awsAccountId", base_theme_id="baseThemeId", configuration=quicksight.CfnTheme.ThemeConfigurationProperty( data_color_palette=quicksight.CfnTheme.DataColorPaletteProperty( colors=["colors"], empty_fill_color="emptyFillColor", min_max_gradient=["minMaxGradient"] ), sheet=quicksight.CfnTheme.SheetStyleProperty( tile=quicksight.CfnTheme.TileStyleProperty( border=quicksight.CfnTheme.BorderStyleProperty( show=False ) ), tile_layout=quicksight.CfnTheme.TileLayoutStyleProperty( gutter=quicksight.CfnTheme.GutterStyleProperty( show=False ), margin=quicksight.CfnTheme.MarginStyleProperty( show=False ) ) ), typography=quicksight.CfnTheme.TypographyProperty( font_families=[quicksight.CfnTheme.FontProperty( font_family="fontFamily" )] ), ui_color_palette=quicksight.CfnTheme.UIColorPaletteProperty( accent="accent", accent_foreground="accentForeground", danger="danger", danger_foreground="dangerForeground", dimension="dimension", dimension_foreground="dimensionForeground", measure="measure", measure_foreground="measureForeground", primary_background="primaryBackground", primary_foreground="primaryForeground", secondary_background="secondaryBackground", secondary_foreground="secondaryForeground", success="success", success_foreground="successForeground", warning="warning", warning_foreground="warningForeground" ) ), name="name", theme_id="themeId", # the properties below are optional permissions=[quicksight.CfnTheme.ResourcePermissionProperty( actions=["actions"], principal="principal", # the properties below are optional resource="resource" )], tags=[CfnTag( key="key", value="value" )], version_description="versionDescription" ) - Parameters:
- scope ( - Construct) – Scope in which this resource is defined.
- id ( - str) – Construct identifier for this resource (unique in its scope).
- aws_account_id ( - str) – The ID of the AWS account where you want to store the new theme.
- base_theme_id ( - str) – The ID of the theme that a custom theme will inherit from. All themes inherit from one of the starting themes defined by Amazon Quick Sight. For a list of the starting themes, use- ListThemesor choose Themes from within an analysis.
- configuration ( - Union[- IResolvable,- ThemeConfigurationProperty,- Dict[- str,- Any]]) – The theme configuration, which contains the theme display properties.
- name ( - str) – A display name for the theme.
- theme_id ( - str) – An ID for the theme that you want to create. The theme ID is unique per AWS Region in each AWS account.
- permissions ( - Union[- IResolvable,- Sequence[- Union[- IResolvable,- ResourcePermissionProperty,- Dict[- str,- Any]]],- None]) – A valid grouping of resource permissions to apply to the new theme.
- tags ( - Optional[- Sequence[- Union[- CfnTag,- Dict[- str,- Any]]]]) – A map of the key-value pairs for the resource tag or tags that you want to add to the resource.
- version_description ( - Optional[- str]) – A description of the first version of the theme that you’re creating. Every time- UpdateThemeis called, a new version is created. Each version of the theme has a description of the version in the- VersionDescriptionfield.
 
 - Methods - add_deletion_override(path)
- Syntactic sugar for - addOverride(path, undefined).- Parameters:
- path ( - str) – The path of the value to delete.
- Return type:
- None
 
 - add_dependency(target)
- Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned. - This can be used for resources across stacks (or nested stack) boundaries and the dependency will automatically be transferred to the relevant scope. - Parameters:
- target ( - CfnResource)
- Return type:
- None
 
 - add_depends_on(target)
- (deprecated) Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned. - Parameters:
- target ( - CfnResource)
- Deprecated:
- use addDependency 
- Stability:
- deprecated 
- Return type:
- None
 
 - add_metadata(key, value)
- Add a value to the CloudFormation Resource Metadata. - Parameters:
- key ( - str)
- value ( - Any)
 
- See:
- Return type:
- None
 - Note that this is a different set of metadata from CDK node metadata; this metadata ends up in the stack template under the resource, whereas CDK node metadata ends up in the Cloud Assembly. 
 - add_override(path, value)
- Adds an override to the synthesized CloudFormation resource. - To add a property override, either use - addPropertyOverrideor prefix- pathwith “Properties.” (i.e.- Properties.TopicName).- If the override is nested, separate each nested level using a dot (.) in the path parameter. If there is an array as part of the nesting, specify the index in the path. - To include a literal - .in the property name, prefix with a- \. In most programming languages you will need to write this as- "\\."because the- \itself will need to be escaped.- For example: - cfn_resource.add_override("Properties.GlobalSecondaryIndexes.0.Projection.NonKeyAttributes", ["myattribute"]) cfn_resource.add_override("Properties.GlobalSecondaryIndexes.1.ProjectionType", "INCLUDE") - would add the overrides Example: - "Properties": { "GlobalSecondaryIndexes": [ { "Projection": { "NonKeyAttributes": [ "myattribute" ] ... } ... }, { "ProjectionType": "INCLUDE" ... }, ] ... } - The - valueargument to- addOverridewill not be processed or translated in any way. Pass raw JSON values in here with the correct capitalization for CloudFormation. If you pass CDK classes or structs, they will be rendered with lowercased key names, and CloudFormation will reject the template.- Parameters:
- path ( - str) –- The path of the property, you can use dot notation to override values in complex types. Any intermediate keys will be created as needed. 
 
- value ( - Any) –- The value. Could be primitive or complex. 
 
 
- Return type:
- None
 
 - add_property_deletion_override(property_path)
- Adds an override that deletes the value of a property from the resource definition. - Parameters:
- property_path ( - str) – The path to the property.
- Return type:
- None
 
 - add_property_override(property_path, value)
- Adds an override to a resource property. - Syntactic sugar for - addOverride("Properties.<...>", value).- Parameters:
- property_path ( - str) – The path of the property.
- value ( - Any) – The value.
 
- Return type:
- None
 
 - apply_removal_policy(policy=None, *, apply_to_update_replace_policy=None, default=None)
- Sets the deletion policy of the resource based on the removal policy specified. - The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you’ve removed it from the CDK application or because you’ve made a change that requires the resource to be replaced. - The resource can be deleted ( - RemovalPolicy.DESTROY), or left in your AWS account for data recovery and cleanup later (- RemovalPolicy.RETAIN). In some cases, a snapshot can be taken of the resource prior to deletion (- RemovalPolicy.SNAPSHOT). A list of resources that support this policy can be found in the following link:- Parameters:
- policy ( - Optional[- RemovalPolicy])
- apply_to_update_replace_policy ( - Optional[- bool]) – Apply the same deletion policy to the resource’s “UpdateReplacePolicy”. Default: true
- default ( - Optional[- RemovalPolicy]) – The default policy to apply in case the removal policy is not defined. Default: - Default value is resource specific. To determine the default value for a resource, please consult that specific resource’s documentation.
 
- See:
- Return type:
- None
 
 - get_att(attribute_name, type_hint=None)
- Returns a token for an runtime attribute of this resource. - Ideally, use generated attribute accessors (e.g. - resource.arn), but this can be used for future compatibility in case there is no generated attribute.- Parameters:
- attribute_name ( - str) – The name of the attribute.
- type_hint ( - Optional[- ResolutionTypeHint])
 
- Return type:
 
 - get_metadata(key)
- Retrieve a value value from the CloudFormation Resource Metadata. - Parameters:
- key ( - str)
- See:
- Return type:
- Any
 - Note that this is a different set of metadata from CDK node metadata; this metadata ends up in the stack template under the resource, whereas CDK node metadata ends up in the Cloud Assembly. 
 - inspect(inspector)
- Examines the CloudFormation resource and discloses attributes. - Parameters:
- inspector ( - TreeInspector) – tree inspector to collect and process attributes.
- Return type:
- None
 
 - obtain_dependencies()
- Retrieves an array of resources this resource depends on. - This assembles dependencies on resources across stacks (including nested stacks) automatically. - Return type:
- List[- Union[- Stack,- CfnResource]]
 
 - obtain_resource_dependencies()
- Get a shallow copy of dependencies between this resource and other resources in the same stack. - Return type:
- List[- CfnResource]
 
 - override_logical_id(new_logical_id)
- Overrides the auto-generated logical ID with a specific ID. - Parameters:
- new_logical_id ( - str) – The new logical ID to use for this stack element.
- Return type:
- None
 
 - remove_dependency(target)
- Indicates that this resource no longer depends on another resource. - This can be used for resources across stacks (including nested stacks) and the dependency will automatically be removed from the relevant scope. - Parameters:
- target ( - CfnResource)
- Return type:
- None
 
 - replace_dependency(target, new_target)
- Replaces one dependency with another. - Parameters:
- target ( - CfnResource) – The dependency to replace.
- new_target ( - CfnResource) – The new dependency to add.
 
- Return type:
- None
 
 - to_string()
- Returns a string representation of this construct. - Return type:
- str
- Returns:
- a string representation of this resource 
 
 - Attributes - CFN_RESOURCE_TYPE_NAME = 'AWS::QuickSight::Theme'
 - attr_arn
- The Amazon Resource Name (ARN) of the theme. - CloudformationAttribute:
- Arn 
 
 - attr_created_time
- The time the theme was created. - CloudformationAttribute:
- CreatedTime 
 
 - attr_last_updated_time
- The time the theme was last updated. - CloudformationAttribute:
- LastUpdatedTime 
 
 - attr_type
- Theme type. - CloudformationAttribute:
- Type 
 
 - attr_version
- Version - Type:
- cloudformationAttribute 
 
 - attr_version_arn
- Version.Arn - Type:
- cloudformationAttribute 
 
 - attr_version_base_theme_id
- Version.BaseThemeId - Type:
- cloudformationAttribute 
 
 - attr_version_configuration
- Version.Configuration - Type:
- cloudformationAttribute 
 
 - attr_version_configuration_data_color_palette
- Version.Configuration.DataColorPalette - Type:
- cloudformationAttribute 
 
 - attr_version_configuration_sheet
- Version.Configuration.Sheet - Type:
- cloudformationAttribute 
 
 - attr_version_configuration_typography
- Version.Configuration.Typography - Type:
- cloudformationAttribute 
 
 - attr_version_configuration_ui_color_palette
- Version.Configuration.UIColorPalette - Type:
- cloudformationAttribute 
 
 - attr_version_created_time
- Version.CreatedTime - Type:
- cloudformationAttribute 
 
 - attr_version_description
- Version.Description - Type:
- cloudformationAttribute 
 
 - attr_version_errors
- Version.Errors - Type:
- cloudformationAttribute 
 
 - attr_version_status
- Version.Status - Type:
- cloudformationAttribute 
 
 - attr_version_version_number
- Version.VersionNumber - Type:
- cloudformationAttribute 
 
 - aws_account_id
- The ID of the AWS account where you want to store the new theme. 
 - base_theme_id
- The ID of the theme that a custom theme will inherit from. 
 - cfn_options
- Options for this resource, such as condition, update policy etc. 
 - cfn_resource_type
- AWS resource type. 
 - configuration
- The theme configuration, which contains the theme display properties. 
 - creation_stack
- return: - the stack trace of the point where this Resource was created from, sourced from the +metadata+ entry typed +aws:cdk:logicalId+, and with the bottom-most node +internal+ entries filtered. 
 - logical_id
- The logical ID for this CloudFormation stack element. - The logical ID of the element is calculated from the path of the resource node in the construct tree. - To override this value, use - overrideLogicalId(newLogicalId).- Returns:
 - the logical ID as a stringified token. This value will only get resolved during synthesis. 
 - name
- A display name for the theme. 
 - node
- The tree node. 
 - permissions
- A valid grouping of resource permissions to apply to the new theme. 
 - ref
- Return a string that will be resolved to a CloudFormation - { Ref }for this element.- If, by any chance, the intrinsic reference of a resource is not a string, you could coerce it to an IResolvable through - Lazy.any({ produce: resource.ref }).
 - stack
- The stack in which this element is defined. - CfnElements must be defined within a stack scope (directly or indirectly). 
 - tags
- Tag Manager which manages the tags for this resource. 
 - tags_raw
- A map of the key-value pairs for the resource tag or tags that you want to add to the resource. 
 - theme_id
- An ID for the theme that you want to create. 
 - theme_ref
- A reference to a Theme resource. 
 - version_description
- A description of the first version of the theme that you’re creating. 
 - Static Methods - classmethod is_cfn_element(x)
- Returns - trueif a construct is a stack element (i.e. part of the synthesized cloudformation template).- Uses duck-typing instead of - instanceofto allow stack elements from different versions of this library to be included in the same stack.- Parameters:
- x ( - Any)
- Return type:
- bool
- Returns:
- The construct as a stack element or undefined if it is not a stack element. 
 
 - classmethod is_cfn_resource(x)
- Check whether the given object is a CfnResource. - Parameters:
- x ( - Any)
- Return type:
- bool
 
 - classmethod is_construct(x)
- Checks if - xis a construct.- Use this method instead of - instanceofto properly detect- Constructinstances, even when the construct library is symlinked.- Explanation: in JavaScript, multiple copies of the - constructslibrary on disk are seen as independent, completely different libraries. As a consequence, the class- Constructin each copy of the- constructslibrary is seen as a different class, and an instance of one class will not test as- instanceofthe other class.- npm installwill not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of the- constructslibrary can be accidentally installed, and- instanceofwill behave unpredictably. It is safest to avoid using- instanceof, and using this type-testing method instead.- Parameters:
- x ( - Any) – Any object.
- Return type:
- bool
- Returns:
- true if - xis an object created from a class which extends- Construct.
 
 
BorderStyleProperty
- class CfnTheme.BorderStyleProperty(*, show=None)
- Bases: - object- The display options for tile borders for visuals. - Parameters:
- show ( - Union[- bool,- IResolvable,- None]) – The option to enable display of borders for visuals.
- See:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_quicksight as quicksight border_style_property = quicksight.CfnTheme.BorderStyleProperty( show=False ) - Attributes - show
- The option to enable display of borders for visuals. 
 
DataColorPaletteProperty
- class CfnTheme.DataColorPaletteProperty(*, colors=None, empty_fill_color=None, min_max_gradient=None)
- Bases: - object- The theme colors that are used for data colors in charts. - The colors description is a hexadecimal color code that consists of six alphanumerical characters, prefixed with - #, for example #37BFF5.- Parameters:
- colors ( - Optional[- Sequence[- str]]) – The hexadecimal codes for the colors.
- empty_fill_color ( - Optional[- str]) – The hexadecimal code of a color that applies to charts where a lack of data is highlighted.
- min_max_gradient ( - Optional[- Sequence[- str]]) – The minimum and maximum hexadecimal codes that describe a color gradient.
 
- See:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_quicksight as quicksight data_color_palette_property = quicksight.CfnTheme.DataColorPaletteProperty( colors=["colors"], empty_fill_color="emptyFillColor", min_max_gradient=["minMaxGradient"] ) - Attributes - colors
- The hexadecimal codes for the colors. 
 - empty_fill_color
- The hexadecimal code of a color that applies to charts where a lack of data is highlighted. 
 - min_max_gradient
- The minimum and maximum hexadecimal codes that describe a color gradient. 
 
FontProperty
- class CfnTheme.FontProperty(*, font_family=None)
- Bases: - object- Determines the font settings. - Parameters:
- font_family ( - Optional[- str]) – Determines the font family settings.
- See:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_quicksight as quicksight font_property = quicksight.CfnTheme.FontProperty( font_family="fontFamily" ) - Attributes - font_family
- Determines the font family settings. 
 
GutterStyleProperty
- class CfnTheme.GutterStyleProperty(*, show=None)
- Bases: - object- The display options for gutter spacing between tiles on a sheet. - Parameters:
- show ( - Union[- bool,- IResolvable,- None]) – This Boolean value controls whether to display a gutter space between sheet tiles.
- See:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_quicksight as quicksight gutter_style_property = quicksight.CfnTheme.GutterStyleProperty( show=False ) - Attributes - show
- This Boolean value controls whether to display a gutter space between sheet tiles. 
 
MarginStyleProperty
- class CfnTheme.MarginStyleProperty(*, show=None)
- Bases: - object- The display options for margins around the outside edge of sheets. - Parameters:
- show ( - Union[- bool,- IResolvable,- None]) – This Boolean value controls whether to display sheet margins.
- See:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_quicksight as quicksight margin_style_property = quicksight.CfnTheme.MarginStyleProperty( show=False ) - Attributes - show
- This Boolean value controls whether to display sheet margins. 
 
ResourcePermissionProperty
- class CfnTheme.ResourcePermissionProperty(*, actions, principal, resource=None)
- Bases: - object- Permission for the resource. - Parameters:
- actions ( - Sequence[- str]) – The IAM action to grant or revoke permissions on.
- principal ( - str) – The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon Quick Suite user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon Quick Suite user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a Quick Suite ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
- resource ( - Optional[- str])
 
- See:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_quicksight as quicksight resource_permission_property = quicksight.CfnTheme.ResourcePermissionProperty( actions=["actions"], principal="principal", # the properties below are optional resource="resource" ) - Attributes - actions
- The IAM action to grant or revoke permissions on. 
 - principal
- . - The ARN of an Amazon Quick Suite user or group associated with a data source or dataset. (This is common.) 
- The ARN of an Amazon Quick Suite user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) 
- The ARN of an AWS account root: This is an IAM ARN rather than a Quick Suite ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.) 
 - See:
- Type:
- The Amazon Resource Name (ARN) of the principal. This can be one of the following 
 
 
SheetStyleProperty
- class CfnTheme.SheetStyleProperty(*, tile=None, tile_layout=None)
- Bases: - object- The theme display options for sheets. - Parameters:
- tile ( - Union[- IResolvable,- TileStyleProperty,- Dict[- str,- Any],- None]) – The display options for tiles.
- tile_layout ( - Union[- IResolvable,- TileLayoutStyleProperty,- Dict[- str,- Any],- None]) – The layout options for tiles.
 
- See:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_quicksight as quicksight sheet_style_property = quicksight.CfnTheme.SheetStyleProperty( tile=quicksight.CfnTheme.TileStyleProperty( border=quicksight.CfnTheme.BorderStyleProperty( show=False ) ), tile_layout=quicksight.CfnTheme.TileLayoutStyleProperty( gutter=quicksight.CfnTheme.GutterStyleProperty( show=False ), margin=quicksight.CfnTheme.MarginStyleProperty( show=False ) ) ) - Attributes - tile
- The display options for tiles. 
 - tile_layout
- The layout options for tiles. 
 
ThemeConfigurationProperty
- class CfnTheme.ThemeConfigurationProperty(*, data_color_palette=None, sheet=None, typography=None, ui_color_palette=None)
- Bases: - object- The theme configuration. - This configuration contains all of the display properties for a theme. - Parameters:
- data_color_palette ( - Union[- IResolvable,- DataColorPaletteProperty,- Dict[- str,- Any],- None]) – Color properties that apply to chart data colors.
- sheet ( - Union[- IResolvable,- SheetStyleProperty,- Dict[- str,- Any],- None]) – Display options related to sheets.
- typography ( - Union[- IResolvable,- TypographyProperty,- Dict[- str,- Any],- None]) – Determines the typography options.
- ui_color_palette ( - Union[- IResolvable,- UIColorPaletteProperty,- Dict[- str,- Any],- None]) – Color properties that apply to the UI and to charts, excluding the colors that apply to data.
 
- See:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_quicksight as quicksight theme_configuration_property = quicksight.CfnTheme.ThemeConfigurationProperty( data_color_palette=quicksight.CfnTheme.DataColorPaletteProperty( colors=["colors"], empty_fill_color="emptyFillColor", min_max_gradient=["minMaxGradient"] ), sheet=quicksight.CfnTheme.SheetStyleProperty( tile=quicksight.CfnTheme.TileStyleProperty( border=quicksight.CfnTheme.BorderStyleProperty( show=False ) ), tile_layout=quicksight.CfnTheme.TileLayoutStyleProperty( gutter=quicksight.CfnTheme.GutterStyleProperty( show=False ), margin=quicksight.CfnTheme.MarginStyleProperty( show=False ) ) ), typography=quicksight.CfnTheme.TypographyProperty( font_families=[quicksight.CfnTheme.FontProperty( font_family="fontFamily" )] ), ui_color_palette=quicksight.CfnTheme.UIColorPaletteProperty( accent="accent", accent_foreground="accentForeground", danger="danger", danger_foreground="dangerForeground", dimension="dimension", dimension_foreground="dimensionForeground", measure="measure", measure_foreground="measureForeground", primary_background="primaryBackground", primary_foreground="primaryForeground", secondary_background="secondaryBackground", secondary_foreground="secondaryForeground", success="success", success_foreground="successForeground", warning="warning", warning_foreground="warningForeground" ) ) - Attributes - data_color_palette
- Color properties that apply to chart data colors. 
 - sheet
- Display options related to sheets. 
 - typography
- Determines the typography options. 
 - ui_color_palette
- Color properties that apply to the UI and to charts, excluding the colors that apply to data. 
 
ThemeErrorProperty
- class CfnTheme.ThemeErrorProperty(*, message=None, type=None)
- Bases: - object- Theme error. - Parameters:
- message ( - Optional[- str]) – The error message.
- type ( - Optional[- str]) – The type of error.
 
- See:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_quicksight as quicksight theme_error_property = quicksight.CfnTheme.ThemeErrorProperty( message="message", type="type" ) - Attributes - message
- The error message. 
 
ThemeVersionProperty
- class CfnTheme.ThemeVersionProperty(*, arn=None, base_theme_id=None, configuration=None, created_time=None, description=None, errors=None, status=None, version_number=None)
- Bases: - object- A version of a theme. - Parameters:
- arn ( - Optional[- str]) – The Amazon Resource Name (ARN) of the resource.
- base_theme_id ( - Optional[- str]) – The Quick Sight-defined ID of the theme that a custom theme inherits from. All themes initially inherit from a default Quick Sight theme.
- configuration ( - Union[- IResolvable,- ThemeConfigurationProperty,- Dict[- str,- Any],- None]) – The theme configuration, which contains all the theme display properties.
- created_time ( - Optional[- str]) – The date and time that this theme version was created.
- description ( - Optional[- str]) – The description of the theme.
- errors ( - Union[- IResolvable,- Sequence[- Union[- IResolvable,- ThemeErrorProperty,- Dict[- str,- Any]]],- None]) – Errors associated with the theme.
- status ( - Optional[- str]) – The status of the theme version.
- version_number ( - Union[- int,- float,- None]) – The version number of the theme.
 
- See:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_quicksight as quicksight theme_version_property = quicksight.CfnTheme.ThemeVersionProperty( arn="arn", base_theme_id="baseThemeId", configuration=quicksight.CfnTheme.ThemeConfigurationProperty( data_color_palette=quicksight.CfnTheme.DataColorPaletteProperty( colors=["colors"], empty_fill_color="emptyFillColor", min_max_gradient=["minMaxGradient"] ), sheet=quicksight.CfnTheme.SheetStyleProperty( tile=quicksight.CfnTheme.TileStyleProperty( border=quicksight.CfnTheme.BorderStyleProperty( show=False ) ), tile_layout=quicksight.CfnTheme.TileLayoutStyleProperty( gutter=quicksight.CfnTheme.GutterStyleProperty( show=False ), margin=quicksight.CfnTheme.MarginStyleProperty( show=False ) ) ), typography=quicksight.CfnTheme.TypographyProperty( font_families=[quicksight.CfnTheme.FontProperty( font_family="fontFamily" )] ), ui_color_palette=quicksight.CfnTheme.UIColorPaletteProperty( accent="accent", accent_foreground="accentForeground", danger="danger", danger_foreground="dangerForeground", dimension="dimension", dimension_foreground="dimensionForeground", measure="measure", measure_foreground="measureForeground", primary_background="primaryBackground", primary_foreground="primaryForeground", secondary_background="secondaryBackground", secondary_foreground="secondaryForeground", success="success", success_foreground="successForeground", warning="warning", warning_foreground="warningForeground" ) ), created_time="createdTime", description="description", errors=[quicksight.CfnTheme.ThemeErrorProperty( message="message", type="type" )], status="status", version_number=123 ) - Attributes - arn
- The Amazon Resource Name (ARN) of the resource. 
 - base_theme_id
- The Quick Sight-defined ID of the theme that a custom theme inherits from. - All themes initially inherit from a default Quick Sight theme. 
 - configuration
- The theme configuration, which contains all the theme display properties. 
 - created_time
- The date and time that this theme version was created. 
 - description
- The description of the theme. 
 - errors
- Errors associated with the theme. 
 - status
- The status of the theme version. 
 - version_number
- The version number of the theme. 
 
TileLayoutStyleProperty
- class CfnTheme.TileLayoutStyleProperty(*, gutter=None, margin=None)
- Bases: - object- The display options for the layout of tiles on a sheet. - Parameters:
- gutter ( - Union[- IResolvable,- GutterStyleProperty,- Dict[- str,- Any],- None]) – The gutter settings that apply between tiles.
- margin ( - Union[- IResolvable,- MarginStyleProperty,- Dict[- str,- Any],- None]) – The margin settings that apply around the outside edge of sheets.
 
- See:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_quicksight as quicksight tile_layout_style_property = quicksight.CfnTheme.TileLayoutStyleProperty( gutter=quicksight.CfnTheme.GutterStyleProperty( show=False ), margin=quicksight.CfnTheme.MarginStyleProperty( show=False ) ) - Attributes - gutter
- The gutter settings that apply between tiles. 
 - margin
- The margin settings that apply around the outside edge of sheets. 
 
TileStyleProperty
- class CfnTheme.TileStyleProperty(*, border=None)
- Bases: - object- Display options related to tiles on a sheet. - Parameters:
- border ( - Union[- IResolvable,- BorderStyleProperty,- Dict[- str,- Any],- None]) – The border around a tile.
- See:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_quicksight as quicksight tile_style_property = quicksight.CfnTheme.TileStyleProperty( border=quicksight.CfnTheme.BorderStyleProperty( show=False ) ) - Attributes - border
- The border around a tile. 
 
TypographyProperty
- class CfnTheme.TypographyProperty(*, font_families=None)
- Bases: - object- Determines the typography options. - Parameters:
- font_families ( - Union[- IResolvable,- Sequence[- Union[- IResolvable,- FontProperty,- Dict[- str,- Any]]],- None]) – Determines the list of font families.
- See:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_quicksight as quicksight typography_property = quicksight.CfnTheme.TypographyProperty( font_families=[quicksight.CfnTheme.FontProperty( font_family="fontFamily" )] ) - Attributes - font_families
- Determines the list of font families. 
 
UIColorPaletteProperty
- class CfnTheme.UIColorPaletteProperty(*, accent=None, accent_foreground=None, danger=None, danger_foreground=None, dimension=None, dimension_foreground=None, measure=None, measure_foreground=None, primary_background=None, primary_foreground=None, secondary_background=None, secondary_foreground=None, success=None, success_foreground=None, warning=None, warning_foreground=None)
- Bases: - object- The theme colors that apply to UI and to charts, excluding data colors. - The colors description is a hexadecimal color code that consists of six alphanumerical characters, prefixed with - #, for example #37BFF5. For more information, see Using Themes in Amazon Quick Suite in the Amazon Quick Suite User Guide.- Parameters:
- accent ( - Optional[- str]) – This color is that applies to selected states and buttons.
- accent_foreground ( - Optional[- str]) – The foreground color that applies to any text or other elements that appear over the accent color.
- danger ( - Optional[- str]) – The color that applies to error messages.
- danger_foreground ( - Optional[- str]) – The foreground color that applies to any text or other elements that appear over the error color.
- dimension ( - Optional[- str]) – The color that applies to the names of fields that are identified as dimensions.
- dimension_foreground ( - Optional[- str]) – The foreground color that applies to any text or other elements that appear over the dimension color.
- measure ( - Optional[- str]) – The color that applies to the names of fields that are identified as measures.
- measure_foreground ( - Optional[- str]) – The foreground color that applies to any text or other elements that appear over the measure color.
- primary_background ( - Optional[- str]) – The background color that applies to visuals and other high emphasis UI.
- primary_foreground ( - Optional[- str]) – The color of text and other foreground elements that appear over the primary background regions, such as grid lines, borders, table banding, icons, and so on.
- secondary_background ( - Optional[- str]) – The background color that applies to the sheet background and sheet controls.
- secondary_foreground ( - Optional[- str]) – The foreground color that applies to any sheet title, sheet control text, or UI that appears over the secondary background.
- success ( - Optional[- str]) – The color that applies to success messages, for example the check mark for a successful download.
- success_foreground ( - Optional[- str]) – The foreground color that applies to any text or other elements that appear over the success color.
- warning ( - Optional[- str]) – This color that applies to warning and informational messages.
- warning_foreground ( - Optional[- str]) – The foreground color that applies to any text or other elements that appear over the warning color.
 
- See:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_quicksight as quicksight u_iColor_palette_property = quicksight.CfnTheme.UIColorPaletteProperty( accent="accent", accent_foreground="accentForeground", danger="danger", danger_foreground="dangerForeground", dimension="dimension", dimension_foreground="dimensionForeground", measure="measure", measure_foreground="measureForeground", primary_background="primaryBackground", primary_foreground="primaryForeground", secondary_background="secondaryBackground", secondary_foreground="secondaryForeground", success="success", success_foreground="successForeground", warning="warning", warning_foreground="warningForeground" ) - Attributes - accent
- This color is that applies to selected states and buttons. 
 - accent_foreground
- The foreground color that applies to any text or other elements that appear over the accent color. 
 - danger
- The color that applies to error messages. 
 - danger_foreground
- The foreground color that applies to any text or other elements that appear over the error color. 
 - dimension
- The color that applies to the names of fields that are identified as dimensions. 
 - dimension_foreground
- The foreground color that applies to any text or other elements that appear over the dimension color. 
 - measure
- The color that applies to the names of fields that are identified as measures. 
 - measure_foreground
- The foreground color that applies to any text or other elements that appear over the measure color. 
 - primary_background
- The background color that applies to visuals and other high emphasis UI. 
 - primary_foreground
- The color of text and other foreground elements that appear over the primary background regions, such as grid lines, borders, table banding, icons, and so on. 
 - secondary_background
- The background color that applies to the sheet background and sheet controls. 
 - secondary_foreground
- The foreground color that applies to any sheet title, sheet control text, or UI that appears over the secondary background. 
 - success
- The color that applies to success messages, for example the check mark for a successful download. 
 - success_foreground
- The foreground color that applies to any text or other elements that appear over the success color. 
 - warning
- This color that applies to warning and informational messages. 
 - warning_foreground
- The foreground color that applies to any text or other elements that appear over the warning color.