Show / Hide Table of Contents

Class CfnComponent.MutationActionSetStateParameterProperty

Represents the state configuration when an action modifies a property of another element within the same component.

Inheritance
System.Object
CfnComponent.MutationActionSetStateParameterProperty
Implements
CfnComponent.IMutationActionSetStateParameterProperty
Namespace: Amazon.CDK.AWS.AmplifyUIBuilder
Assembly: Amazon.CDK.AWS.AmplifyUIBuilder.dll
Syntax (csharp)
public class MutationActionSetStateParameterProperty : Object, CfnComponent.IMutationActionSetStateParameterProperty
Syntax (vb)
Public Class MutationActionSetStateParameterProperty
    Inherits Object
    Implements CfnComponent.IMutationActionSetStateParameterProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-mutationactionsetstateparameter.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.AWS.AmplifyUIBuilder;

ComponentPropertyProperty componentPropertyProperty_;

var mutationActionSetStateParameterProperty = new MutationActionSetStateParameterProperty {
    ComponentName = "componentName",
    Property = "property",
    Set = new ComponentPropertyProperty {
        BindingProperties = new ComponentPropertyBindingPropertiesProperty {
            Property = "property",

            // the properties below are optional
            Field = "field"
        },
        Bindings = new Dictionary<string, object> {
            { "bindingsKey", new FormBindingElementProperty {
                Element = "element",
                Property = "property"
            } }
        },
        CollectionBindingProperties = new ComponentPropertyBindingPropertiesProperty {
            Property = "property",

            // the properties below are optional
            Field = "field"
        },
        ComponentName = "componentName",
        Concat = new [] { componentPropertyProperty_ },
        Condition = new ComponentConditionPropertyProperty {
            Else = componentPropertyProperty_,
            Field = "field",
            Operand = "operand",
            OperandType = "operandType",
            Operator = "operator",
            Property = "property",
            Then = componentPropertyProperty_
        },
        Configured = false,
        DefaultValue = "defaultValue",
        Event = "event",
        ImportedValue = "importedValue",
        Model = "model",
        Property = "property",
        Type = "type",
        UserAttribute = "userAttribute",
        Value = "value"
    }
};

Synopsis

Constructors

MutationActionSetStateParameterProperty()

Properties

ComponentName

The name of the component that is being modified.

Property

The name of the component property to apply the state configuration to.

Set

The state configuration to assign to the property.

Constructors

MutationActionSetStateParameterProperty()

public MutationActionSetStateParameterProperty()

Properties

ComponentName

The name of the component that is being modified.

public string ComponentName { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-mutationactionsetstateparameter.html#cfn-amplifyuibuilder-component-mutationactionsetstateparameter-componentname

Property

The name of the component property to apply the state configuration to.

public string Property { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-mutationactionsetstateparameter.html#cfn-amplifyuibuilder-component-mutationactionsetstateparameter-property

Set

The state configuration to assign to the property.

public object Set { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-mutationactionsetstateparameter.html#cfn-amplifyuibuilder-component-mutationactionsetstateparameter-set

Implements

CfnComponent.IMutationActionSetStateParameterProperty
Back to top Generated by DocFX