Show / Hide Table of Contents

Interface CfnForm.IFormCTAProperty

The FormCTA property specifies the call to action button configuration for the form.

Namespace: Amazon.CDK.AWS.AmplifyUIBuilder
Assembly: Amazon.CDK.AWS.AmplifyUIBuilder.dll
Syntax (csharp)
public interface IFormCTAProperty
Syntax (vb)
Public Interface IFormCTAProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-formcta.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;

var formCTAProperty = new FormCTAProperty {
    Cancel = new FormButtonProperty {
        Children = "children",
        Excluded = false,
        Position = new FieldPositionProperty {
            Below = "below",
            Fixed = "fixed",
            RightOf = "rightOf"
        }
    },
    Clear = new FormButtonProperty {
        Children = "children",
        Excluded = false,
        Position = new FieldPositionProperty {
            Below = "below",
            Fixed = "fixed",
            RightOf = "rightOf"
        }
    },
    Position = "position",
    Submit = new FormButtonProperty {
        Children = "children",
        Excluded = false,
        Position = new FieldPositionProperty {
            Below = "below",
            Fixed = "fixed",
            RightOf = "rightOf"
        }
    }
};

Synopsis

Properties

Cancel

Displays a cancel button.

Clear

Displays a clear button.

Position

The position of the button.

Submit

Displays a submit button.

Properties

Cancel

Displays a cancel button.

virtual object Cancel { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-formcta.html#cfn-amplifyuibuilder-form-formcta-cancel

Clear

Displays a clear button.

virtual object Clear { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-formcta.html#cfn-amplifyuibuilder-form-formcta-clear

Position

The position of the button.

virtual string Position { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-formcta.html#cfn-amplifyuibuilder-form-formcta-position

Submit

Displays a submit button.

virtual object Submit { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-formcta.html#cfn-amplifyuibuilder-form-formcta-submit

Back to top Generated by DocFX