Show / Hide Table of Contents

Class CfnBackupSelection.ConditionResourceTypeProperty

Specifies an object that contains an array of triplets made up of a condition type (such as STRINGEQUALS ), a key, and a value.

Inheritance
object
CfnBackupSelection.ConditionResourceTypeProperty
Implements
CfnBackupSelection.IConditionResourceTypeProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Backup
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBackupSelection.ConditionResourceTypeProperty : CfnBackupSelection.IConditionResourceTypeProperty
Syntax (vb)
Public Class CfnBackupSelection.ConditionResourceTypeProperty Implements CfnBackupSelection.IConditionResourceTypeProperty
Remarks

Conditions are used to filter resources in a selection that is assigned to a backup plan.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-conditionresourcetype.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.AWS.Backup;

             var conditionResourceTypeProperty = new ConditionResourceTypeProperty {
                 ConditionKey = "conditionKey",
                 ConditionType = "conditionType",
                 ConditionValue = "conditionValue"
             };

Synopsis

Constructors

ConditionResourceTypeProperty()

Specifies an object that contains an array of triplets made up of a condition type (such as STRINGEQUALS ), a key, and a value.

Properties

ConditionKey

The key in a key-value pair.

ConditionType

An operation, such as STRINGEQUALS , that is applied to a key-value pair used to filter resources in a selection.

ConditionValue

The value in a key-value pair.

Constructors

ConditionResourceTypeProperty()

Specifies an object that contains an array of triplets made up of a condition type (such as STRINGEQUALS ), a key, and a value.

public ConditionResourceTypeProperty()
Remarks

Conditions are used to filter resources in a selection that is assigned to a backup plan.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-conditionresourcetype.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.AWS.Backup;

             var conditionResourceTypeProperty = new ConditionResourceTypeProperty {
                 ConditionKey = "conditionKey",
                 ConditionType = "conditionType",
                 ConditionValue = "conditionValue"
             };

Properties

ConditionKey

The key in a key-value pair.

public string ConditionKey { get; set; }
Property Value

string

Remarks

For example, in "Department": "accounting" , "Department" is the key.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-conditionresourcetype.html#cfn-backup-backupselection-conditionresourcetype-conditionkey

ConditionType

An operation, such as STRINGEQUALS , that is applied to a key-value pair used to filter resources in a selection.

public string ConditionType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-conditionresourcetype.html#cfn-backup-backupselection-conditionresourcetype-conditiontype

ConditionValue

The value in a key-value pair.

public string ConditionValue { get; set; }
Property Value

string

Remarks

For example, in "Department": "accounting" , "accounting" is the value.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-conditionresourcetype.html#cfn-backup-backupselection-conditionresourcetype-conditionvalue

Implements

CfnBackupSelection.IConditionResourceTypeProperty
Back to top Generated by DocFX