Interface CfnSearchJobMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSearchJobMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:16.230Z")
@Stability(Stable)
public interface CfnSearchJobMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSearchJobPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.backupsearch.*;
CfnSearchJobMixinProps cfnSearchJobMixinProps = CfnSearchJobMixinProps.builder()
.name("name")
.searchScope(SearchScopeProperty.builder()
.backupResourceTypes(List.of("backupResourceTypes"))
.build())
.tags(List.of(TagsItemsProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSearchJobMixinPropsstatic final classAn implementation forCfnSearchJobMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the search job.- See Also:
-
getSearchScope
The search scope for the search job.Returns union: either
IResolvableorCfnSearchJobPropsMixin.SearchScopeProperty- See Also:
-
getTags
Tags associated with the search job.- See Also:
-
builder
- Returns:
- a
CfnSearchJobMixinProps.BuilderofCfnSearchJobMixinProps
-