Interface CfnFramework.ControlInputParameterProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnFramework.ControlInputParameterProperty.Jsii$Proxy
- Enclosing class:
- CfnFramework
@Stability(Stable)
public static interface CfnFramework.ControlInputParameterProperty
extends software.amazon.jsii.JsiiSerializable
The parameters for a control.
 
 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 .
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.backup.*;
 ControlInputParameterProperty controlInputParameterProperty = ControlInputParameterProperty.builder()
         .parameterName("parameterName")
         .parameterValue("parameterValue")
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFramework.ControlInputParameterPropertystatic final classAn implementation forCfnFramework.ControlInputParameterProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()The name of a parameter, for example,BackupPlanFrequency.The value of parameter, for example,hourly.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getParameterNameThe name of a parameter, for example,BackupPlanFrequency.- See Also:
 
- 
getParameterValueThe value of parameter, for example,hourly.- See Also:
 
- 
builder
 
-