Show / Hide Table of Contents

Class CfnBackupSelection.ConditionParameterProperty

Includes information about tags you define to assign tagged resources to a backup plan.

Inheritance
object
CfnBackupSelection.ConditionParameterProperty
Implements
CfnBackupSelection.IConditionParameterProperty
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.ConditionParameterProperty : CfnBackupSelection.IConditionParameterProperty
Syntax (vb)
Public Class CfnBackupSelection.ConditionParameterProperty Implements CfnBackupSelection.IConditionParameterProperty
Remarks

Include the prefix aws:ResourceTag in your tags. For example, "aws:ResourceTag/TagKey1": "Value1" .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-conditionparameter.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 conditionParameterProperty = new ConditionParameterProperty {
                 ConditionKey = "conditionKey",
                 ConditionValue = "conditionValue"
             };

Synopsis

Constructors

ConditionParameterProperty()

Includes information about tags you define to assign tagged resources to a backup plan.

Properties

ConditionKey

The key in a key-value pair.

ConditionValue

The value in a key-value pair.

Constructors

ConditionParameterProperty()

Includes information about tags you define to assign tagged resources to a backup plan.

public ConditionParameterProperty()
Remarks

Include the prefix aws:ResourceTag in your tags. For example, "aws:ResourceTag/TagKey1": "Value1" .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupselection-conditionparameter.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 conditionParameterProperty = new ConditionParameterProperty {
                 ConditionKey = "conditionKey",
                 ConditionValue = "conditionValue"
             };

Properties

ConditionKey

The key in a key-value pair.

public string? ConditionKey { get; set; }
Property Value

string

Remarks

For example, in the tag Department: Accounting , Department is the key.

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

ConditionValue

The value in a key-value pair.

public string? ConditionValue { get; set; }
Property Value

string

Remarks

For example, in the tag Department: Accounting , Accounting is the value.

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

Implements

CfnBackupSelection.IConditionParameterProperty
Back to top Generated by DocFX