Class CfnFramework.ControlInputParameterProperty
The parameters for a control.
Implements
Inherited Members
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 .
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, |
| ParameterValue | The value of parameter, for example, |
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 .
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
Remarks
ParameterValue
The value of parameter, for example, hourly .
public string ParameterValue { get; set; }