Interface CfnAnalysis.IParameterDateTimePickerControlProperty
A control from a date parameter that specifies date and time.
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IParameterDateTimePickerControlProperty
Syntax (vb)
Public Interface IParameterDateTimePickerControlProperty
Remarks
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 parameterDateTimePickerControlProperty = new ParameterDateTimePickerControlProperty {
ParameterControlId = "parameterControlId",
SourceParameterName = "sourceParameterName",
Title = "title",
// the properties below are optional
DisplayOptions = new DateTimePickerControlDisplayOptionsProperty {
DateTimeFormat = "dateTimeFormat",
InfoIconLabelOptions = new SheetControlInfoIconLabelOptionsProperty {
InfoIconText = "infoIconText",
Visibility = "visibility"
},
TitleOptions = new LabelOptionsProperty {
CustomLabel = "customLabel",
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Visibility = "visibility"
}
}
};
Synopsis
Properties
Display |
The display options of a control. |
Parameter |
The ID of the |
Source |
The name of the |
Title | The title of the |
Properties
DisplayOptions
The display options of a control.
virtual object DisplayOptions { get; }
Property Value
System.
Remarks
ParameterControlId
The ID of the ParameterDateTimePickerControl
.
string ParameterControlId { get; }
Property Value
System.
Remarks
SourceParameterName
The name of the ParameterDateTimePickerControl
.
string SourceParameterName { get; }
Property Value
System.
Remarks
Title
The title of the ParameterDateTimePickerControl
.
string Title { get; }
Property Value
System.