interface DateTimeRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BCM.CfnDashboardPropsMixin.DateTimeRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbcm#CfnDashboardPropsMixin_DateTimeRangeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bcm.CfnDashboardPropsMixin.DateTimeRangeProperty |
Python | aws_cdk.cfn_property_mixins.aws_bcm.CfnDashboardPropsMixin.DateTimeRangeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bcm » CfnDashboardPropsMixin » DateTimeRangeProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bcm as bcm } from '@aws-cdk/cfn-property-mixins';
const dateTimeRangeProperty: bcm.CfnDashboardPropsMixin.DateTimeRangeProperty = {
endTime: {
type: 'type',
value: 'value',
},
startTime: {
type: 'type',
value: 'value',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| end | IResolvable | Date | |
| start | IResolvable | Date |
endTime?
Type:
IResolvable | Date
(optional)
startTime?
Type:
IResolvable | Date
(optional)

.NET
Go
Java
Python
TypeScript