interface CfnBackupSelectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Backup.Mixins.CfnBackupSelectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbackup/mixins#CfnBackupSelectionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.backup.mixins.CfnBackupSelectionMixinProps |
Python | aws_cdk.mixins_preview.aws_backup.mixins.CfnBackupSelectionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_backup » mixins » CfnBackupSelectionMixinProps |
Properties for CfnBackupSelectionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as backup_mixins } from '@aws-cdk/mixins-preview/aws-backup';
declare const conditions: any;
const cfnBackupSelectionMixinProps: backup_mixins.CfnBackupSelectionMixinProps = {
backupPlanId: 'backupPlanId',
backupSelection: {
conditions: conditions,
iamRoleArn: 'iamRoleArn',
listOfTags: [{
conditionKey: 'conditionKey',
conditionType: 'conditionType',
conditionValue: 'conditionValue',
}],
notResources: ['notResources'],
resources: ['resources'],
selectionName: 'selectionName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| backup | string | Uniquely identifies a backup plan. |
| backup | IResolvable | Backup | Specifies the body of a request to assign a set of resources to a backup plan. |
backupPlanId?
Type:
string
(optional)
Uniquely identifies a backup plan.
backupSelection?
Type:
IResolvable | Backup
(optional)
Specifies the body of a request to assign a set of resources to a backup plan.
It includes an array of resources, an optional array of patterns to exclude resources, an optional role to provide access to the AWS service the resource belongs to, and an optional array of tags used to identify a set of resources.

.NET
Go
Java
Python
TypeScript