aws-cdk-lib.aws_backup.CfnFramework.ControlInputParameterProperty

interface ControlInputParameterProperty

LanguageType name
.NETAmazon.CDK.AWS.Backup.CfnFramework.ControlInputParameterProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsbackup#CfnFramework_ControlInputParameterProperty
Javasoftware.amazon.awscdk.services.backup.CfnFramework.ControlInputParameterProperty
Pythonaws_cdk.aws_backup.CfnFramework.ControlInputParameterProperty
TypeScript aws-cdk-lib » 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 { aws_backup as backup } from 'aws-cdk-lib';
const controlInputParameterProperty: backup.CfnFramework.ControlInputParameterProperty = {
  parameterName: 'parameterName',
  parameterValue: 'parameterValue',
};

Properties

NameTypeDescription
parameterNamestringThe name of a parameter, for example, BackupPlanFrequency .
parameterValuestringThe 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 .