Show / Hide Table of Contents

Class CfnSearchJobMixinProps

Properties for CfnSearchJobPropsMixin.

Inheritance
object
CfnSearchJobMixinProps
Implements
ICfnSearchJobMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

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

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

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

string

Remarks

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

SearchScope

The search scope for the search job.

public object? SearchScope { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnSearchJobPropsMixin.ISearchScopeProperty

Tags

Tags associated with the search job.

public CfnSearchJobPropsMixin.ITagsItemsProperty[]? Tags { get; set; }
Property Value

ITagsItemsProperty[]

Remarks

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

Implements

ICfnSearchJobMixinProps
Back to top Generated by DocFX