interface DateDimensionFieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.DateDimensionFieldProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_DateDimensionFieldProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.DateDimensionFieldProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.DateDimensionFieldProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » DateDimensionFieldProperty |
The dimension type field with date type columns.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const dateDimensionFieldProperty: quicksight_mixins.CfnDashboardPropsMixin.DateDimensionFieldProperty = {
column: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
dateGranularity: 'dateGranularity',
fieldId: 'fieldId',
formatConfiguration: {
dateTimeFormat: 'dateTimeFormat',
nullValueFormatConfiguration: {
nullString: 'nullString',
},
numericFormatConfiguration: {
currencyDisplayFormatConfiguration: {
decimalPlacesConfiguration: {
decimalPlaces: 123,
},
negativeValueConfiguration: {
displayMode: 'displayMode',
},
nullValueFormatConfiguration: {
nullString: 'nullString',
},
numberScale: 'numberScale',
prefix: 'prefix',
separatorConfiguration: {
decimalSeparator: 'decimalSeparator',
thousandsSeparator: {
groupingStyle: 'groupingStyle',
symbol: 'symbol',
visibility: 'visibility',
},
},
suffix: 'suffix',
symbol: 'symbol',
},
numberDisplayFormatConfiguration: {
decimalPlacesConfiguration: {
decimalPlaces: 123,
},
negativeValueConfiguration: {
displayMode: 'displayMode',
},
nullValueFormatConfiguration: {
nullString: 'nullString',
},
numberScale: 'numberScale',
prefix: 'prefix',
separatorConfiguration: {
decimalSeparator: 'decimalSeparator',
thousandsSeparator: {
groupingStyle: 'groupingStyle',
symbol: 'symbol',
visibility: 'visibility',
},
},
suffix: 'suffix',
},
percentageDisplayFormatConfiguration: {
decimalPlacesConfiguration: {
decimalPlaces: 123,
},
negativeValueConfiguration: {
displayMode: 'displayMode',
},
nullValueFormatConfiguration: {
nullString: 'nullString',
},
prefix: 'prefix',
separatorConfiguration: {
decimalSeparator: 'decimalSeparator',
thousandsSeparator: {
groupingStyle: 'groupingStyle',
symbol: 'symbol',
visibility: 'visibility',
},
},
suffix: 'suffix',
},
},
},
hierarchyId: 'hierarchyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| column? | IResolvable | Column | The column that is used in the DateDimensionField . |
| date | string | The date granularity of the DateDimensionField . Choose one of the following options:. |
| field | string | The custom field ID. |
| format | IResolvable | Date | The format configuration of the field. |
| hierarchy | string | The custom hierarchy ID. |
column?
Type:
IResolvable | Column
(optional)
The column that is used in the DateDimensionField .
dateGranularity?
Type:
string
(optional)
The date granularity of the DateDimensionField . Choose one of the following options:.
YEARQUARTERMONTHWEEKDAYHOURMINUTESECONDMILLISECOND
fieldId?
Type:
string
(optional)
The custom field ID.
formatConfiguration?
Type:
IResolvable | Date
(optional)
The format configuration of the field.
hierarchyId?
Type:
string
(optional)
The custom hierarchy ID.

.NET
Go
Java
Python
TypeScript