Show / Hide Table of Contents

Interface CfnFormPropsMixin.IFormButtonProperty

The FormButton property specifies the configuration for a button UI element that is a part of a form.

Namespace: Amazon.CDK.Mixins.Preview.AWS.AmplifyUIBuilder.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnFormPropsMixin.IFormButtonProperty
Syntax (vb)
Public Interface CfnFormPropsMixin.IFormButtonProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-formbutton.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.Mixins.Preview.AWS.AmplifyUIBuilder.Mixins;

             var formButtonProperty = new FormButtonProperty {
                 Children = "children",
                 Excluded = false,
                 Position = new FieldPositionProperty {
                     Below = "below",
                     Fixed = "fixed",
                     RightOf = "rightOf"
                 }
             };

Synopsis

Properties

Children

Describes the button's properties.

Excluded

Specifies whether the button is visible on the form.

Position

The position of the button.

Properties

Children

Describes the button's properties.

string? Children { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-formbutton.html#cfn-amplifyuibuilder-form-formbutton-children

Excluded

Specifies whether the button is visible on the form.

object? Excluded { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-formbutton.html#cfn-amplifyuibuilder-form-formbutton-excluded

Type union: either bool or IResolvable

Position

The position of the button.

object? Position { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnFormPropsMixin.IFieldPositionProperty

Back to top Generated by DocFX