interface DateRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Backup.CfnLegalHoldPropsMixin.DateRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbackup#CfnLegalHoldPropsMixin_DateRangeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.backup.CfnLegalHoldPropsMixin.DateRangeProperty |
Python | aws_cdk.cfn_property_mixins.aws_backup.CfnLegalHoldPropsMixin.DateRangeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_backup » CfnLegalHoldPropsMixin » DateRangeProperty |
A date range for filtering recovery points.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_backup as backup } from '@aws-cdk/cfn-property-mixins';
const dateRangeProperty: backup.CfnLegalHoldPropsMixin.DateRangeProperty = {
fromDate: 'fromDate',
toDate: 'toDate',
};
Properties
| Name | Type | Description |
|---|---|---|
| from | string | The beginning date, inclusive. |
| to | string | The end date, inclusive. |
fromDate?
Type:
string
(optional)
The beginning date, inclusive.
ISO 8601 date-time.
toDate?
Type:
string
(optional)
The end date, inclusive.
ISO 8601 date-time.

.NET
Go
Java
Python
TypeScript