interface DashboardVersionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.DashboardVersionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_DashboardVersionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.DashboardVersionProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.DashboardVersionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDashboardPropsMixin » DashboardVersionProperty |
Dashboard version.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const dashboardVersionProperty: quicksight.CfnDashboardPropsMixin.DashboardVersionProperty = {
arn: 'arn',
createdTime: 'createdTime',
dataSetArns: ['dataSetArns'],
description: 'description',
errors: [{
message: 'message',
type: 'type',
violatedEntities: [{
path: 'path',
}],
}],
sheets: [{
name: 'name',
sheetId: 'sheetId',
}],
sourceEntityArn: 'sourceEntityArn',
status: 'status',
themeArn: 'themeArn',
versionNumber: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | The Amazon Resource Name (ARN) of the resource. |
| created | string | The time that this dashboard version was created. |
| data | string[] | The Amazon Resource Numbers (ARNs) for the datasets that are associated with this version of the dashboard. |
| description? | string | Description. |
| errors? | IResolvable | (IResolvable | Dashboard)[] | Errors associated with this dashboard version. |
| sheets? | IResolvable | (IResolvable | Sheet)[] | A list of the associated sheets with the unique identifier and name of each sheet. |
| source | string | Source entity ARN. |
| status? | string | The HTTP status of the request. |
| theme | string | The ARN of the theme associated with a version of the dashboard. |
| version | number | Version number for this version of the dashboard. |
arn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the resource.
createdTime?
Type:
string
(optional)
The time that this dashboard version was created.
dataSetArns?
Type:
string[]
(optional)
The Amazon Resource Numbers (ARNs) for the datasets that are associated with this version of the dashboard.
description?
Type:
string
(optional)
Description.
errors?
Type:
IResolvable | (IResolvable | Dashboard)[]
(optional)
Errors associated with this dashboard version.
sheets?
Type:
IResolvable | (IResolvable | Sheet)[]
(optional)
A list of the associated sheets with the unique identifier and name of each sheet.
sourceEntityArn?
Type:
string
(optional)
Source entity ARN.
status?
Type:
string
(optional)
The HTTP status of the request.
themeArn?
Type:
string
(optional)
The ARN of the theme associated with a version of the dashboard.
versionNumber?
Type:
number
(optional)
Version number for this version of the dashboard.

.NET
Go
Java
Python
TypeScript