Show / Hide Table of Contents

Class CfnFramework.ControlInputParameterProperty

The parameters for a control.

Inheritance
object
CfnFramework.ControlInputParameterProperty
Implements
CfnFramework.IControlInputParameterProperty
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 CfnFramework.ControlInputParameterProperty : CfnFramework.IControlInputParameterProperty
Syntax (vb)
Public Class CfnFramework.ControlInputParameterProperty Implements CfnFramework.IControlInputParameterProperty
Remarks

A control can have zero, one, or more than one parameter. An example of a control with two parameters is: "backup plan frequency is at least daily and the retention period is at least 1 year ". The first parameter is daily . The second parameter is 1 year .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-framework-controlinputparameter.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 controlInputParameterProperty = new ControlInputParameterProperty {
                 ParameterName = "parameterName",
                 ParameterValue = "parameterValue"
             };

Synopsis

Constructors

ControlInputParameterProperty()

The parameters for a control.

Properties

ParameterName

The name of a parameter, for example, BackupPlanFrequency .

ParameterValue

The value of parameter, for example, hourly .

Constructors

ControlInputParameterProperty()

The parameters for a control.

public ControlInputParameterProperty()
Remarks

A control can have zero, one, or more than one parameter. An example of a control with two parameters is: "backup plan frequency is at least daily and the retention period is at least 1 year ". The first parameter is daily . The second parameter is 1 year .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-framework-controlinputparameter.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 controlInputParameterProperty = new ControlInputParameterProperty {
                 ParameterName = "parameterName",
                 ParameterValue = "parameterValue"
             };

Properties

ParameterName

The name of a parameter, for example, BackupPlanFrequency .

public string ParameterName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-framework-controlinputparameter.html#cfn-backup-framework-controlinputparameter-parametername

ParameterValue

The value of parameter, for example, hourly .

public string ParameterValue { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-framework-controlinputparameter.html#cfn-backup-framework-controlinputparameter-parametervalue

Implements

CfnFramework.IControlInputParameterProperty
Back to top Generated by DocFX