interface CfnSearchJobProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BackupSearch.CfnSearchJobProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbackupsearch#CfnSearchJobProps |
Java | software.amazon.awscdk.services.backupsearch.CfnSearchJobProps |
Python | aws_cdk.aws_backupsearch.CfnSearchJobProps |
TypeScript | aws-cdk-lib » aws_backupsearch » CfnSearchJobProps |
Properties for defining a CfnSearchJob.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_backupsearch as backupsearch } from 'aws-cdk-lib';
const cfnSearchJobProps: backupsearch.CfnSearchJobProps = {
searchScope: {
backupResourceTypes: ['backupResourceTypes'],
},
// the properties below are optional
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| search | IResolvable | Search | The search scope for the search job. |
| name? | string | The name of the search job. |
| tags? | Tags[] | Tags associated with the search job. |
searchScope
Type:
IResolvable | Search
The search scope for the search job.
name?
Type:
string
(optional)
The name of the search job.
tags?
Type:
Tags[]
(optional)
Tags associated with the search job.

.NET
Go
Java
Python
TypeScript