interface DateRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Backup.CfnLegalHold.DateRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbackup#CfnLegalHold_DateRangeProperty |
Java | software.amazon.awscdk.services.backup.CfnLegalHold.DateRangeProperty |
Python | aws_cdk.aws_backup.CfnLegalHold.DateRangeProperty |
TypeScript | aws-cdk-lib » aws_backup » CfnLegalHold » 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-lib';
const dateRangeProperty: backup.CfnLegalHold.DateRangeProperty = {
fromDate: 'fromDate',
toDate: 'toDate',
};
Properties
| Name | Type | Description |
|---|---|---|
| from | string | The beginning date, inclusive. |
| to | string | The end date, inclusive. |
fromDate
Type:
string
The beginning date, inclusive.
ISO 8601 date-time.
toDate
Type:
string
The end date, inclusive.
ISO 8601 date-time.

.NET
Go
Java
Python
TypeScript