FormReference
- class aws_cdk.aws_amplifyuibuilder.FormReference(*, app_id, environment_name, form_id)
Bases:
object
A reference to a Form resource.
- Parameters:
app_id (
str
) – The AppId of the Form resource.environment_name (
str
) – The EnvironmentName of the Form resource.form_id (
str
) – The Id of the Form resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_amplifyuibuilder as amplifyuibuilder form_reference = amplifyuibuilder.FormReference( app_id="appId", environment_name="environmentName", form_id="formId" )
Attributes
- app_id
The AppId of the Form resource.
- environment_name
The EnvironmentName of the Form resource.
- form_id
The Id of the Form resource.