Show / Hide Table of Contents

Class CfnFrameworkPropsMixin.FrameworkControlProperty

Contains detailed information about all of the controls of a framework.

Inheritance
object
CfnFrameworkPropsMixin.FrameworkControlProperty
Implements
CfnFrameworkPropsMixin.IFrameworkControlProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Backup
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnFrameworkPropsMixin.FrameworkControlProperty : CfnFrameworkPropsMixin.IFrameworkControlProperty
Syntax (vb)
Public Class CfnFrameworkPropsMixin.FrameworkControlProperty Implements CfnFrameworkPropsMixin.IFrameworkControlProperty
Remarks

Each framework must contain at least one control.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-framework-frameworkcontrol.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.CfnPropertyMixins.AWS.Backup;

             var controlScope;

             var frameworkControlProperty = new FrameworkControlProperty {
                 ControlInputParameters = new [] { new ControlInputParameterProperty {
                     ParameterName = "parameterName",
                     ParameterValue = "parameterValue"
                 } },
                 ControlName = "controlName",
                 ControlScope = controlScope
             };

Synopsis

Constructors

FrameworkControlProperty()

Contains detailed information about all of the controls of a framework.

Properties

ControlInputParameters

The name/value pairs.

ControlName

The name of a control.

ControlScope

The scope of a control.

Constructors

FrameworkControlProperty()

Contains detailed information about all of the controls of a framework.

public FrameworkControlProperty()
Remarks

Each framework must contain at least one control.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-framework-frameworkcontrol.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.CfnPropertyMixins.AWS.Backup;

             var controlScope;

             var frameworkControlProperty = new FrameworkControlProperty {
                 ControlInputParameters = new [] { new ControlInputParameterProperty {
                     ParameterName = "parameterName",
                     ParameterValue = "parameterValue"
                 } },
                 ControlName = "controlName",
                 ControlScope = controlScope
             };

Properties

ControlInputParameters

The name/value pairs.

public object? ControlInputParameters { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnFrameworkPropsMixin.IControlInputParameterProperty)[]

ControlName

The name of a control.

public string? ControlName { get; set; }
Property Value

string

Remarks

This name is between 1 and 256 characters.

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

ControlScope

The scope of a control.

public object? ControlScope { get; set; }
Property Value

object

Remarks

The control scope defines what the control will evaluate. Three examples of control scopes are: a specific backup plan, all backup plans with a specific tag, or all backup plans.

For more information, see ControlScope .

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

Implements

CfnFrameworkPropsMixin.IFrameworkControlProperty
Back to top Generated by DocFX