interface ControlInputParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Backup.CfnFramework.ControlInputParameterProperty |
Java | software.amazon.awscdk.services.backup.CfnFramework.ControlInputParameterProperty |
Python | aws_cdk.aws_backup.CfnFramework.ControlInputParameterProperty |
TypeScript | @aws-cdk/aws-backup » CfnFramework » ControlInputParameterProperty |
A list of 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 * as backup from '@aws-cdk/aws-backup';
const controlInputParameterProperty: backup.CfnFramework.ControlInputParameterProperty = {
parameterName: 'parameterName',
parameterValue: 'parameterValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| parameter | string | The name of a parameter, for example, BackupPlanFrequency . |
| parameter | string | The value of parameter, for example, hourly . |
parameterName
Type:
string
The name of a parameter, for example, BackupPlanFrequency .
parameterValue
Type:
string
The value of parameter, for example, hourly .

.NET
Java
Python
TypeScript