interface ParameterDateTimePickerControlProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.ParameterDateTimePickerControlProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_ParameterDateTimePickerControlProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.ParameterDateTimePickerControlProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.ParameterDateTimePickerControlProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » ParameterDateTimePickerControlProperty |
A control from a date parameter that specifies date and time.
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 parameterDateTimePickerControlProperty: quicksight_mixins.CfnAnalysisPropsMixin.ParameterDateTimePickerControlProperty = {
displayOptions: {
dateIconVisibility: 'dateIconVisibility',
dateTimeFormat: 'dateTimeFormat',
helperTextVisibility: 'helperTextVisibility',
infoIconLabelOptions: {
infoIconText: 'infoIconText',
visibility: 'visibility',
},
titleOptions: {
customLabel: 'customLabel',
fontConfiguration: {
fontColor: 'fontColor',
fontDecoration: 'fontDecoration',
fontFamily: 'fontFamily',
fontSize: {
absolute: 'absolute',
relative: 'relative',
},
fontStyle: 'fontStyle',
fontWeight: {
name: 'name',
},
},
visibility: 'visibility',
},
},
parameterControlId: 'parameterControlId',
sourceParameterName: 'sourceParameterName',
title: 'title',
};
Properties
| Name | Type | Description |
|---|---|---|
| display | IResolvable | Date | The display options of a control. |
| parameter | string | The ID of the ParameterDateTimePickerControl . |
| source | string | The name of the ParameterDateTimePickerControl . |
| title? | string | The title of the ParameterDateTimePickerControl . |
displayOptions?
Type:
IResolvable | Date
(optional)
The display options of a control.
parameterControlId?
Type:
string
(optional)
The ID of the ParameterDateTimePickerControl .
sourceParameterName?
Type:
string
(optional)
The name of the ParameterDateTimePickerControl .
title?
Type:
string
(optional)
The title of the ParameterDateTimePickerControl .

.NET
Go
Java
Python
TypeScript