Class FormReference
A reference to a Form resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AmplifyUIBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class FormReference : IFormReference
Syntax (vb)
Public Class FormReference Implements IFormReference
Remarks
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 formReference = new FormReference {
AppId = "appId",
EnvironmentName = "environmentName",
FormId = "formId"
};
Synopsis
Constructors
FormReference() | A reference to a Form resource. |
Properties
AppId | The AppId of the Form resource. |
EnvironmentName | The EnvironmentName of the Form resource. |
FormId | The Id of the Form resource. |
Constructors
FormReference()
A reference to a Form resource.
public FormReference()
Remarks
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 formReference = new FormReference {
AppId = "appId",
EnvironmentName = "environmentName",
FormId = "formId"
};
Properties
AppId
The AppId of the Form resource.
public string AppId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
EnvironmentName
The EnvironmentName of the Form resource.
public string EnvironmentName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
FormId
The Id of the Form resource.
public string FormId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated