Class CfnSearchJobMixinProps
Properties for CfnSearchJobPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.BackupSearch
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnSearchJobMixinProps : ICfnSearchJobMixinProps
Syntax (vb)
Public Class CfnSearchJobMixinProps Implements ICfnSearchJobMixinProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.BackupSearch;
var cfnSearchJobMixinProps = new CfnSearchJobMixinProps {
Name = "name",
SearchScope = new SearchScopeProperty {
BackupResourceTypes = new [] { "backupResourceTypes" }
},
Tags = new [] { new TagsItemsProperty {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnSearchJobMixinProps() | Properties for CfnSearchJobPropsMixin. |
Properties
| Name | The name of the search job. |
| SearchScope | The search scope for the search job. |
| Tags | Tags associated with the search job. |
Constructors
CfnSearchJobMixinProps()
Properties for CfnSearchJobPropsMixin.
public CfnSearchJobMixinProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.BackupSearch;
var cfnSearchJobMixinProps = new CfnSearchJobMixinProps {
Name = "name",
SearchScope = new SearchScopeProperty {
BackupResourceTypes = new [] { "backupResourceTypes" }
},
Tags = new [] { new TagsItemsProperty {
Key = "key",
Value = "value"
} }
};
Properties
Name
The name of the search job.
public string? Name { get; set; }
Property Value
Remarks
SearchScope
The search scope for the search job.
public object? SearchScope { get; set; }
Property Value
Remarks
Tags
Tags associated with the search job.
public CfnSearchJobPropsMixin.ITagsItemsProperty[]? Tags { get; set; }