aws-cdk-lib.aws_quicksight.CfnAnalysis.ParameterDateTimePickerControlProperty

interface ParameterDateTimePickerControlProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnAnalysis.ParameterDateTimePickerControlProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_ParameterDateTimePickerControlProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnAnalysis.ParameterDateTimePickerControlProperty
Pythonaws_cdk.aws_quicksight.CfnAnalysis.ParameterDateTimePickerControlProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnAnalysis » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const parameterDateTimePickerControlProperty: quicksight.CfnAnalysis.ParameterDateTimePickerControlProperty = {
  parameterControlId: 'parameterControlId',
  sourceParameterName: 'sourceParameterName',
  title: 'title',

  // the properties below are optional
  displayOptions: {
    dateTimeFormat: 'dateTimeFormat',
    titleOptions: {
      customLabel: 'customLabel',
      fontConfiguration: {
        fontColor: 'fontColor',
        fontDecoration: 'fontDecoration',
        fontSize: {
          relative: 'relative',
        },
        fontStyle: 'fontStyle',
        fontWeight: {
          name: 'name',
        },
      },
      visibility: 'visibility',
    },
  },
};

Properties

NameTypeDescription
parameterControlIdstringThe ID of the ParameterDateTimePickerControl .
sourceParameterNamestringThe name of the ParameterDateTimePickerControl .
titlestringThe title of the ParameterDateTimePickerControl .
displayOptions?IResolvable | DateTimePickerControlDisplayOptionsPropertyThe display options of a control.

parameterControlId

Type: string

The ID of the ParameterDateTimePickerControl .


sourceParameterName

Type: string

The name of the ParameterDateTimePickerControl .


title

Type: string

The title of the ParameterDateTimePickerControl .


displayOptions?

Type: IResolvable | DateTimePickerControlDisplayOptionsProperty (optional)

The display options of a control.