Class CfnTheme.ThemeVersionProperty
A version of a theme.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class ThemeVersionProperty : Object, CfnTheme.IThemeVersionPropertySyntax (vb)
Public Class ThemeVersionProperty
    Inherits Object
    Implements CfnTheme.IThemeVersionPropertyRemarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var themeVersionProperty = new ThemeVersionProperty {
    Arn = "arn",
    BaseThemeId = "baseThemeId",
    Configuration = new ThemeConfigurationProperty {
        DataColorPalette = new DataColorPaletteProperty {
            Colors = new [] { "colors" },
            EmptyFillColor = "emptyFillColor",
            MinMaxGradient = new [] { "minMaxGradient" }
        },
        Sheet = new SheetStyleProperty {
            Tile = new TileStyleProperty {
                Border = new BorderStyleProperty {
                    Show = false
                }
            },
            TileLayout = new TileLayoutStyleProperty {
                Gutter = new GutterStyleProperty {
                    Show = false
                },
                Margin = new MarginStyleProperty {
                    Show = false
                }
            }
        },
        Typography = new TypographyProperty {
            FontFamilies = new [] { new FontProperty {
                FontFamily = "fontFamily"
            } }
        },
        UiColorPalette = new UIColorPaletteProperty {
            Accent = "accent",
            AccentForeground = "accentForeground",
            Danger = "danger",
            DangerForeground = "dangerForeground",
            Dimension = "dimension",
            DimensionForeground = "dimensionForeground",
            Measure = "measure",
            MeasureForeground = "measureForeground",
            PrimaryBackground = "primaryBackground",
            PrimaryForeground = "primaryForeground",
            SecondaryBackground = "secondaryBackground",
            SecondaryForeground = "secondaryForeground",
            Success = "success",
            SuccessForeground = "successForeground",
            Warning = "warning",
            WarningForeground = "warningForeground"
        }
    },
    CreatedTime = "createdTime",
    Description = "description",
    Errors = new [] { new ThemeErrorProperty {
        Message = "message",
        Type = "type"
    } },
    Status = "status",
    VersionNumber = 123
};Synopsis
Constructors
| ThemeVersionProperty() | 
Properties
| Arn | The Amazon Resource Name (ARN) of the resource. | 
| BaseThemeId | The Amazon QuickSight-defined ID of the theme that a custom theme inherits from. | 
| Configuration | The theme configuration, which contains all the theme display properties. | 
| CreatedTime | 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. | 
| VersionNumber | The version number of the theme. | 
Constructors
ThemeVersionProperty()
public ThemeVersionProperty()Properties
Arn
The Amazon Resource Name (ARN) of the resource.
public string Arn { get; set; }Property Value
System.String
Remarks
BaseThemeId
The Amazon QuickSight-defined ID of the theme that a custom theme inherits from.
public string BaseThemeId { get; set; }Property Value
System.String
Remarks
All themes initially inherit from a default Amazon QuickSight theme.
Configuration
The theme configuration, which contains all the theme display properties.
public object Configuration { get; set; }Property Value
System.Object
Remarks
CreatedTime
The date and time that this theme version was created.
public string CreatedTime { get; set; }Property Value
System.String
Remarks
Description
The description of the theme.
public string Description { get; set; }Property Value
System.String
Remarks
Errors
Errors associated with the theme.
public object Errors { get; set; }Property Value
System.Object
Remarks
Status
The status of the theme version.
public string Status { get; set; }Property Value
System.String
Remarks
VersionNumber
The version number of the theme.
public Nullable<double> VersionNumber { get; set; }Property Value
System.Nullable<System.Double>