interface ResourceSelectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Backup.CfnTieringConfiguration.ResourceSelectionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbackup#CfnTieringConfiguration_ResourceSelectionProperty |
Java | software.amazon.awscdk.services.backup.CfnTieringConfiguration.ResourceSelectionProperty |
Python | aws_cdk.aws_backup.CfnTieringConfiguration.ResourceSelectionProperty |
TypeScript | aws-cdk-lib » aws_backup » CfnTieringConfiguration » ResourceSelectionProperty |
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 resourceSelectionProperty: backup.CfnTieringConfiguration.ResourceSelectionProperty = {
resources: ['resources'],
resourceType: 'resourceType',
tieringDownSettingsInDays: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | |
| resources | string[] | |
| tiering | number |
resourceType
Type:
string
resources
Type:
string[]
tieringDownSettingsInDays
Type:
number

.NET
Go
Java
Python
TypeScript