FormReference
- class aws_cdk.interfaces.aws_amplifyuibuilder.FormReference(*, app_id, environment_name, form_id)
Bases:
objectA 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.interfaces import aws_amplifyuibuilder as interfaces_aws_amplifyuibuilder form_reference = interfaces_aws_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.