CfnSearchJobMixinProps

class aws_cdk.cfn_property_mixins.aws_backupsearch.CfnSearchJobMixinProps(*, name=None, search_scope=None, tags=None)

Bases: object

Properties for CfnSearchJobPropsMixin.

Parameters:
  • name (Optional[str]) – The name of the search job.

  • search_scope (Union[IResolvable, SearchScopeProperty, Dict[str, Any], None]) – The search scope for the search job.

  • tags (Optional[Sequence[Union[TagsItemsProperty, Dict[str, Any]]]]) – Tags associated with the search job.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupsearch-searchjob.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.cfn_property_mixins import aws_backupsearch as backupsearch

cfn_search_job_mixin_props = backupsearch.CfnSearchJobMixinProps(
    name="name",
    search_scope=backupsearch.CfnSearchJobPropsMixin.SearchScopeProperty(
        backup_resource_types=["backupResourceTypes"]
    ),
    tags=[backupsearch.CfnSearchJobPropsMixin.TagsItemsProperty(
        key="key",
        value="value"
    )]
)

Attributes

name

The name of the search job.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupsearch-searchjob.html#cfn-backupsearch-searchjob-name

search_scope

The search scope for the search job.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupsearch-searchjob.html#cfn-backupsearch-searchjob-searchscope

tags

Tags associated with the search job.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupsearch-searchjob.html#cfn-backupsearch-searchjob-tags