CfnForm
- class aws_cdk.aws_amplifyuibuilder.CfnForm(scope, id, *, data_type, fields, form_action_type, name, schema_version, sectional_elements, style, app_id=None, cta=None, environment_name=None, label_decorator=None, tags=None)
Bases:
CfnResource
A CloudFormation
AWS::AmplifyUIBuilder::Form
.The AWS::AmplifyUIBuilder::Form resource specifies all of the information that is required to create a form.
- CloudformationResource:
AWS::AmplifyUIBuilder::Form
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_amplifyuibuilder as amplifyuibuilder cfn_form = amplifyuibuilder.CfnForm(self, "MyCfnForm", data_type=amplifyuibuilder.CfnForm.FormDataTypeConfigProperty( data_source_type="dataSourceType", data_type_name="dataTypeName" ), fields={ "fields_key": amplifyuibuilder.CfnForm.FieldConfigProperty( excluded=False, input_type=amplifyuibuilder.CfnForm.FieldInputConfigProperty( type="type", # the properties below are optional default_checked=False, default_country_code="defaultCountryCode", default_value="defaultValue", descriptive_text="descriptiveText", file_uploader_config=amplifyuibuilder.CfnForm.FileUploaderFieldConfigProperty( accepted_file_types=["acceptedFileTypes"], access_level="accessLevel", # the properties below are optional is_resumable=False, max_file_count=123, max_size=123, show_thumbnails=False ), is_array=False, max_value=123, min_value=123, name="name", placeholder="placeholder", read_only=False, required=False, step=123, value="value", value_mappings=amplifyuibuilder.CfnForm.ValueMappingsProperty( values=[amplifyuibuilder.CfnForm.ValueMappingProperty( value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty( value="value" ), # the properties below are optional display_value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty( value="value" ) )] ) ), label="label", position=amplifyuibuilder.CfnForm.FieldPositionProperty( below="below", fixed="fixed", right_of="rightOf" ), validations=[amplifyuibuilder.CfnForm.FieldValidationConfigurationProperty( type="type", # the properties below are optional num_values=[123], str_values=["strValues"], validation_message="validationMessage" )] ) }, form_action_type="formActionType", name="name", schema_version="schemaVersion", sectional_elements={ "sectional_elements_key": amplifyuibuilder.CfnForm.SectionalElementProperty( type="type", # the properties below are optional excluded=False, level=123, orientation="orientation", position=amplifyuibuilder.CfnForm.FieldPositionProperty( below="below", fixed="fixed", right_of="rightOf" ), text="text" ) }, style=amplifyuibuilder.CfnForm.FormStyleProperty( horizontal_gap=amplifyuibuilder.CfnForm.FormStyleConfigProperty( token_reference="tokenReference", value="value" ), outer_padding=amplifyuibuilder.CfnForm.FormStyleConfigProperty( token_reference="tokenReference", value="value" ), vertical_gap=amplifyuibuilder.CfnForm.FormStyleConfigProperty( token_reference="tokenReference", value="value" ) ), # the properties below are optional app_id="appId", cta=amplifyuibuilder.CfnForm.FormCTAProperty( cancel=amplifyuibuilder.CfnForm.FormButtonProperty( children="children", excluded=False, position=amplifyuibuilder.CfnForm.FieldPositionProperty( below="below", fixed="fixed", right_of="rightOf" ) ), clear=amplifyuibuilder.CfnForm.FormButtonProperty( children="children", excluded=False, position=amplifyuibuilder.CfnForm.FieldPositionProperty( below="below", fixed="fixed", right_of="rightOf" ) ), position="position", submit=amplifyuibuilder.CfnForm.FormButtonProperty( children="children", excluded=False, position=amplifyuibuilder.CfnForm.FieldPositionProperty( below="below", fixed="fixed", right_of="rightOf" ) ) ), environment_name="environmentName", label_decorator="labelDecorator", tags={ "tags_key": "tags" } )
Create a new
AWS::AmplifyUIBuilder::Form
.- Parameters:
scope (
Construct
) –scope in which this resource is defined.
id (
str
) –scoped id of the resource.
data_type (
Union
[IResolvable
,FormDataTypeConfigProperty
,Dict
[str
,Any
]]) – The type of data source to use to create the form.fields (
Union
[IResolvable
,Mapping
[str
,Union
[IResolvable
,FieldConfigProperty
,Dict
[str
,Any
]]]]) – The configuration information for the form’s fields.form_action_type (
str
) – Specifies whether to perform a create or update action on the form.name (
str
) – The name of the form.schema_version (
str
) – The schema version of the form.sectional_elements (
Union
[IResolvable
,Mapping
[str
,Union
[IResolvable
,SectionalElementProperty
,Dict
[str
,Any
]]]]) – The configuration information for the visual helper elements for the form. These elements are not associated with any data.style (
Union
[IResolvable
,FormStyleProperty
,Dict
[str
,Any
]]) – The configuration for the form’s style.app_id (
Optional
[str
]) – The unique ID of the Amplify app associated with the form.cta (
Union
[IResolvable
,FormCTAProperty
,Dict
[str
,Any
],None
]) – TheFormCTA
object that stores the call to action configuration for the form.environment_name (
Optional
[str
]) – The name of the backend environment that is a part of the Amplify app.label_decorator (
Optional
[str
]) –AWS::AmplifyUIBuilder::Form.LabelDecorator
.tags (
Optional
[Mapping
[str
,str
]]) – One or more key-value pairs to use when tagging the form data.
Methods
- add_deletion_override(path)
Syntactic sugar for
addOverride(path, undefined)
.- Parameters:
path (
str
) – The path of the value to delete.- Return type:
None
- add_depends_on(target)
Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned.
This can be used for resources across stacks (or nested stack) boundaries and the dependency will automatically be transferred to the relevant scope.
- Parameters:
target (
CfnResource
)- Return type:
None
- add_metadata(key, value)
Add a value to the CloudFormation Resource Metadata.
- Parameters:
key (
str
)value (
Any
)
- See:
- Return type:
None
Note that this is a different set of metadata from CDK node metadata; this metadata ends up in the stack template under the resource, whereas CDK node metadata ends up in the Cloud Assembly.
- add_override(path, value)
Adds an override to the synthesized CloudFormation resource.
To add a property override, either use
addPropertyOverride
or prefixpath
with “Properties.” (i.e.Properties.TopicName
).If the override is nested, separate each nested level using a dot (.) in the path parameter. If there is an array as part of the nesting, specify the index in the path.
To include a literal
.
in the property name, prefix with a\
. In most programming languages you will need to write this as"\\."
because the\
itself will need to be escaped.For example:
cfn_resource.add_override("Properties.GlobalSecondaryIndexes.0.Projection.NonKeyAttributes", ["myattribute"]) cfn_resource.add_override("Properties.GlobalSecondaryIndexes.1.ProjectionType", "INCLUDE")
would add the overrides Example:
"Properties": { "GlobalSecondaryIndexes": [ { "Projection": { "NonKeyAttributes": [ "myattribute" ] ... } ... }, { "ProjectionType": "INCLUDE" ... }, ] ... }
The
value
argument toaddOverride
will not be processed or translated in any way. Pass raw JSON values in here with the correct capitalization for CloudFormation. If you pass CDK classes or structs, they will be rendered with lowercased key names, and CloudFormation will reject the template.- Parameters:
path (
str
) –The path of the property, you can use dot notation to override values in complex types. Any intermdediate keys will be created as needed.
value (
Any
) –The value. Could be primitive or complex.
- Return type:
None
- add_property_deletion_override(property_path)
Adds an override that deletes the value of a property from the resource definition.
- Parameters:
property_path (
str
) – The path to the property.- Return type:
None
- add_property_override(property_path, value)
Adds an override to a resource property.
Syntactic sugar for
addOverride("Properties.<...>", value)
.- Parameters:
property_path (
str
) – The path of the property.value (
Any
) – The value.
- Return type:
None
- apply_removal_policy(policy=None, *, apply_to_update_replace_policy=None, default=None)
Sets the deletion policy of the resource based on the removal policy specified.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you’ve removed it from the CDK application or because you’ve made a change that requires the resource to be replaced.
The resource can be deleted (
RemovalPolicy.DESTROY
), or left in your AWS account for data recovery and cleanup later (RemovalPolicy.RETAIN
).- Parameters:
policy (
Optional
[RemovalPolicy
])apply_to_update_replace_policy (
Optional
[bool
]) – Apply the same deletion policy to the resource’s “UpdateReplacePolicy”. Default: truedefault (
Optional
[RemovalPolicy
]) – The default policy to apply in case the removal policy is not defined. Default: - Default value is resource specific. To determine the default value for a resoure, please consult that specific resource’s documentation.
- Return type:
None
- get_att(attribute_name)
Returns a token for an runtime attribute of this resource.
Ideally, use generated attribute accessors (e.g.
resource.arn
), but this can be used for future compatibility in case there is no generated attribute.- Parameters:
attribute_name (
str
) – The name of the attribute.- Return type:
- get_metadata(key)
Retrieve a value value from the CloudFormation Resource Metadata.
- Parameters:
key (
str
)- See:
- Return type:
Any
Note that this is a different set of metadata from CDK node metadata; this metadata ends up in the stack template under the resource, whereas CDK node metadata ends up in the Cloud Assembly.
- inspect(inspector)
Examines the CloudFormation resource and discloses attributes.
- Parameters:
inspector (
TreeInspector
) –tree inspector to collect and process attributes.
- Return type:
None
- override_logical_id(new_logical_id)
Overrides the auto-generated logical ID with a specific ID.
- Parameters:
new_logical_id (
str
) – The new logical ID to use for this stack element.- Return type:
None
- to_string()
Returns a string representation of this construct.
- Return type:
str
- Returns:
a string representation of this resource
Attributes
- CFN_RESOURCE_TYPE_NAME = 'AWS::AmplifyUIBuilder::Form'
- app_id
The unique ID of the Amplify app associated with the form.
- attr_id
The ID for the form.
- CloudformationAttribute:
Id
- cfn_options
Options for this resource, such as condition, update policy etc.
- cfn_resource_type
AWS resource type.
- creation_stack
return:
the stack trace of the point where this Resource was created from, sourced from the +metadata+ entry typed +aws:cdk:logicalId+, and with the bottom-most node +internal+ entries filtered.
- cta
The
FormCTA
object that stores the call to action configuration for the form.
- data_type
The type of data source to use to create the form.
- environment_name
The name of the backend environment that is a part of the Amplify app.
- fields
The configuration information for the form’s fields.
- form_action_type
Specifies whether to perform a create or update action on the form.
- label_decorator
AWS::AmplifyUIBuilder::Form.LabelDecorator
.
- logical_id
The logical ID for this CloudFormation stack element.
The logical ID of the element is calculated from the path of the resource node in the construct tree.
To override this value, use
overrideLogicalId(newLogicalId)
.- Returns:
the logical ID as a stringified token. This value will only get resolved during synthesis.
- name
The name of the form.
- node
The construct tree node associated with this construct.
- ref
Return a string that will be resolved to a CloudFormation
{ Ref }
for this element.If, by any chance, the intrinsic reference of a resource is not a string, you could coerce it to an IResolvable through
Lazy.any({ produce: resource.ref })
.
- schema_version
The schema version of the form.
- sectional_elements
The configuration information for the visual helper elements for the form.
These elements are not associated with any data.
- stack
The stack in which this element is defined.
CfnElements must be defined within a stack scope (directly or indirectly).
- style
The configuration for the form’s style.
- tags
One or more key-value pairs to use when tagging the form data.
Static Methods
- classmethod is_cfn_element(x)
Returns
true
if a construct is a stack element (i.e. part of the synthesized cloudformation template).Uses duck-typing instead of
instanceof
to allow stack elements from different versions of this library to be included in the same stack.- Parameters:
x (
Any
)- Return type:
bool
- Returns:
The construct as a stack element or undefined if it is not a stack element.
- classmethod is_cfn_resource(construct)
Check whether the given construct is a CfnResource.
- Parameters:
construct (
IConstruct
)- Return type:
bool
- classmethod is_construct(x)
Return whether the given object is a Construct.
- Parameters:
x (
Any
)- Return type:
bool
FieldConfigProperty
- class CfnForm.FieldConfigProperty(*, excluded=None, input_type=None, label=None, position=None, validations=None)
Bases:
object
The
FieldConfig
property specifies the configuration information for a field in a table.- Parameters:
excluded (
Union
[bool
,IResolvable
,None
]) – Specifies whether to hide a field.input_type (
Union
[IResolvable
,FieldInputConfigProperty
,Dict
[str
,Any
],None
]) – Describes the configuration for the default input value to display for a field.label (
Optional
[str
]) – The label for the field.position (
Union
[IResolvable
,FieldPositionProperty
,Dict
[str
,Any
],None
]) – Specifies the field position.validations (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,FieldValidationConfigurationProperty
,Dict
[str
,Any
]]],None
]) – The validations to perform on the value in the field.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_amplifyuibuilder as amplifyuibuilder field_config_property = amplifyuibuilder.CfnForm.FieldConfigProperty( excluded=False, input_type=amplifyuibuilder.CfnForm.FieldInputConfigProperty( type="type", # the properties below are optional default_checked=False, default_country_code="defaultCountryCode", default_value="defaultValue", descriptive_text="descriptiveText", file_uploader_config=amplifyuibuilder.CfnForm.FileUploaderFieldConfigProperty( accepted_file_types=["acceptedFileTypes"], access_level="accessLevel", # the properties below are optional is_resumable=False, max_file_count=123, max_size=123, show_thumbnails=False ), is_array=False, max_value=123, min_value=123, name="name", placeholder="placeholder", read_only=False, required=False, step=123, value="value", value_mappings=amplifyuibuilder.CfnForm.ValueMappingsProperty( values=[amplifyuibuilder.CfnForm.ValueMappingProperty( value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty( value="value" ), # the properties below are optional display_value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty( value="value" ) )] ) ), label="label", position=amplifyuibuilder.CfnForm.FieldPositionProperty( below="below", fixed="fixed", right_of="rightOf" ), validations=[amplifyuibuilder.CfnForm.FieldValidationConfigurationProperty( type="type", # the properties below are optional num_values=[123], str_values=["strValues"], validation_message="validationMessage" )] )
Attributes
- excluded
Specifies whether to hide a field.
- input_type
Describes the configuration for the default input value to display for a field.
- label
The label for the field.
- position
Specifies the field position.
- validations
The validations to perform on the value in the field.
FieldInputConfigProperty
- class CfnForm.FieldInputConfigProperty(*, type, default_checked=None, default_country_code=None, default_value=None, descriptive_text=None, file_uploader_config=None, is_array=None, max_value=None, min_value=None, name=None, placeholder=None, read_only=None, required=None, step=None, value=None, value_mappings=None)
Bases:
object
The
FieldInputConfig
property specifies the configuration for the default input values to display for a field.- Parameters:
type (
str
) – The input type for the field.default_checked (
Union
[bool
,IResolvable
,None
]) – Specifies whether a field has a default value.default_country_code (
Optional
[str
]) – The default country code for a phone number.default_value (
Optional
[str
]) – The default value for the field.descriptive_text (
Optional
[str
]) – The text to display to describe the field.file_uploader_config (
Union
[IResolvable
,FileUploaderFieldConfigProperty
,Dict
[str
,Any
],None
]) –CfnForm.FieldInputConfigProperty.FileUploaderConfig
.is_array (
Union
[bool
,IResolvable
,None
]) –CfnForm.FieldInputConfigProperty.IsArray
.max_value (
Union
[int
,float
,None
]) – The maximum value to display for the field.min_value (
Union
[int
,float
,None
]) – The minimum value to display for the field.name (
Optional
[str
]) – The name of the field.placeholder (
Optional
[str
]) – The text to display as a placeholder for the field.read_only (
Union
[bool
,IResolvable
,None
]) – Specifies a read only field.required (
Union
[bool
,IResolvable
,None
]) – Specifies a field that requires input.step (
Union
[int
,float
,None
]) – The stepping increment for a numeric value in a field.value (
Optional
[str
]) – The value for the field.value_mappings (
Union
[IResolvable
,ValueMappingsProperty
,Dict
[str
,Any
],None
]) – The information to use to customize the input fields with data at runtime.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_amplifyuibuilder as amplifyuibuilder field_input_config_property = amplifyuibuilder.CfnForm.FieldInputConfigProperty( type="type", # the properties below are optional default_checked=False, default_country_code="defaultCountryCode", default_value="defaultValue", descriptive_text="descriptiveText", file_uploader_config=amplifyuibuilder.CfnForm.FileUploaderFieldConfigProperty( accepted_file_types=["acceptedFileTypes"], access_level="accessLevel", # the properties below are optional is_resumable=False, max_file_count=123, max_size=123, show_thumbnails=False ), is_array=False, max_value=123, min_value=123, name="name", placeholder="placeholder", read_only=False, required=False, step=123, value="value", value_mappings=amplifyuibuilder.CfnForm.ValueMappingsProperty( values=[amplifyuibuilder.CfnForm.ValueMappingProperty( value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty( value="value" ), # the properties below are optional display_value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty( value="value" ) )] ) )
Attributes
- default_checked
Specifies whether a field has a default value.
- default_country_code
The default country code for a phone number.
- default_value
The default value for the field.
- descriptive_text
The text to display to describe the field.
- file_uploader_config
CfnForm.FieldInputConfigProperty.FileUploaderConfig
.
- is_array
CfnForm.FieldInputConfigProperty.IsArray
.
- max_value
The maximum value to display for the field.
- min_value
The minimum value to display for the field.
- name
The name of the field.
- placeholder
The text to display as a placeholder for the field.
- read_only
Specifies a read only field.
- required
Specifies a field that requires input.
- step
The stepping increment for a numeric value in a field.
- type
The input type for the field.
- value
The value for the field.
- value_mappings
The information to use to customize the input fields with data at runtime.
FieldPositionProperty
- class CfnForm.FieldPositionProperty(*, below=None, fixed=None, right_of=None)
Bases:
object
The
FieldPosition
property specifies the field position.- Parameters:
below (
Optional
[str
]) –CfnForm.FieldPositionProperty.Below
.fixed (
Optional
[str
]) –CfnForm.FieldPositionProperty.Fixed
.right_of (
Optional
[str
]) –CfnForm.FieldPositionProperty.RightOf
.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_amplifyuibuilder as amplifyuibuilder field_position_property = amplifyuibuilder.CfnForm.FieldPositionProperty( below="below", fixed="fixed", right_of="rightOf" )
Attributes
- below
CfnForm.FieldPositionProperty.Below
.
- fixed
CfnForm.FieldPositionProperty.Fixed
.
- right_of
CfnForm.FieldPositionProperty.RightOf
.
FieldValidationConfigurationProperty
- class CfnForm.FieldValidationConfigurationProperty(*, type, num_values=None, str_values=None, validation_message=None)
Bases:
object
The
FieldValidationConfiguration
property specifies the validation configuration for a field.- Parameters:
type (
str
) – The validation to perform on an object type. ``num_values (
Union
[IResolvable
,Sequence
[Union
[int
,float
]],None
]) – The validation to perform on a number value.str_values (
Optional
[Sequence
[str
]]) – The validation to perform on a string value.validation_message (
Optional
[str
]) – The validation message to display.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_amplifyuibuilder as amplifyuibuilder field_validation_configuration_property = amplifyuibuilder.CfnForm.FieldValidationConfigurationProperty( type="type", # the properties below are optional num_values=[123], str_values=["strValues"], validation_message="validationMessage" )
Attributes
- num_values
The validation to perform on a number value.
- str_values
The validation to perform on a string value.
- type
The validation to perform on an object type.
- validation_message
The validation message to display.
FileUploaderFieldConfigProperty
- class CfnForm.FileUploaderFieldConfigProperty(*, accepted_file_types, access_level, is_resumable=None, max_file_count=None, max_size=None, show_thumbnails=None)
Bases:
object
- Parameters:
accepted_file_types (
Sequence
[str
]) –CfnForm.FileUploaderFieldConfigProperty.AcceptedFileTypes
.access_level (
str
) –CfnForm.FileUploaderFieldConfigProperty.AccessLevel
.is_resumable (
Union
[bool
,IResolvable
,None
]) –CfnForm.FileUploaderFieldConfigProperty.IsResumable
.max_file_count (
Union
[int
,float
,None
]) –CfnForm.FileUploaderFieldConfigProperty.MaxFileCount
.max_size (
Union
[int
,float
,None
]) –CfnForm.FileUploaderFieldConfigProperty.MaxSize
.show_thumbnails (
Union
[bool
,IResolvable
,None
]) –CfnForm.FileUploaderFieldConfigProperty.ShowThumbnails
.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_amplifyuibuilder as amplifyuibuilder file_uploader_field_config_property = amplifyuibuilder.CfnForm.FileUploaderFieldConfigProperty( accepted_file_types=["acceptedFileTypes"], access_level="accessLevel", # the properties below are optional is_resumable=False, max_file_count=123, max_size=123, show_thumbnails=False )
Attributes
- accepted_file_types
CfnForm.FileUploaderFieldConfigProperty.AcceptedFileTypes
.
- access_level
CfnForm.FileUploaderFieldConfigProperty.AccessLevel
.
- is_resumable
CfnForm.FileUploaderFieldConfigProperty.IsResumable
.
- max_file_count
CfnForm.FileUploaderFieldConfigProperty.MaxFileCount
.
- max_size
CfnForm.FileUploaderFieldConfigProperty.MaxSize
.
- show_thumbnails
CfnForm.FileUploaderFieldConfigProperty.ShowThumbnails
.
FormCTAProperty
- class CfnForm.FormCTAProperty(*, cancel=None, clear=None, position=None, submit=None)
Bases:
object
The
FormCTA
property specifies the call to action button configuration for the form.- Parameters:
cancel (
Union
[IResolvable
,FormButtonProperty
,Dict
[str
,Any
],None
]) – Displays a cancel button.clear (
Union
[IResolvable
,FormButtonProperty
,Dict
[str
,Any
],None
]) – Displays a clear button.position (
Optional
[str
]) – The position of the button.submit (
Union
[IResolvable
,FormButtonProperty
,Dict
[str
,Any
],None
]) – Displays a submit button.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_amplifyuibuilder as amplifyuibuilder form_cTAProperty = amplifyuibuilder.CfnForm.FormCTAProperty( cancel=amplifyuibuilder.CfnForm.FormButtonProperty( children="children", excluded=False, position=amplifyuibuilder.CfnForm.FieldPositionProperty( below="below", fixed="fixed", right_of="rightOf" ) ), clear=amplifyuibuilder.CfnForm.FormButtonProperty( children="children", excluded=False, position=amplifyuibuilder.CfnForm.FieldPositionProperty( below="below", fixed="fixed", right_of="rightOf" ) ), position="position", submit=amplifyuibuilder.CfnForm.FormButtonProperty( children="children", excluded=False, position=amplifyuibuilder.CfnForm.FieldPositionProperty( below="below", fixed="fixed", right_of="rightOf" ) ) )
Attributes
- cancel
Displays a cancel button.
- clear
Displays a clear button.
- position
The position of the button.
- submit
Displays a submit button.
FormDataTypeConfigProperty
- class CfnForm.FormDataTypeConfigProperty(*, data_source_type, data_type_name)
Bases:
object
The
FormDataTypeConfig
property specifies the data type configuration for the data source associated with a form.- Parameters:
data_source_type (
str
) – The data source type, either an Amplify DataStore model or a custom data type.data_type_name (
str
) – The unique name of the data type you are using as the data source for the form.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_amplifyuibuilder as amplifyuibuilder form_data_type_config_property = amplifyuibuilder.CfnForm.FormDataTypeConfigProperty( data_source_type="dataSourceType", data_type_name="dataTypeName" )
Attributes
- data_source_type
The data source type, either an Amplify DataStore model or a custom data type.
- data_type_name
The unique name of the data type you are using as the data source for the form.
FormInputValuePropertyProperty
- class CfnForm.FormInputValuePropertyProperty(*, value=None)
Bases:
object
The
FormInputValueProperty
property specifies the configuration for an input field on a form.Use
FormInputValueProperty
to specify the values to render or bind by default.- Parameters:
value (
Optional
[str
]) – The value to assign to the input field.- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_amplifyuibuilder as amplifyuibuilder form_input_value_property_property = amplifyuibuilder.CfnForm.FormInputValuePropertyProperty( value="value" )
Attributes
- value
The value to assign to the input field.
FormStyleConfigProperty
- class CfnForm.FormStyleConfigProperty(*, token_reference=None, value=None)
Bases:
object
The
FormStyleConfig
property specifies the configuration settings for the form’s style properties.- Parameters:
token_reference (
Optional
[str
]) –CfnForm.FormStyleConfigProperty.TokenReference
.value (
Optional
[str
]) –CfnForm.FormStyleConfigProperty.Value
.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_amplifyuibuilder as amplifyuibuilder form_style_config_property = amplifyuibuilder.CfnForm.FormStyleConfigProperty( token_reference="tokenReference", value="value" )
Attributes
- token_reference
CfnForm.FormStyleConfigProperty.TokenReference
.
- value
CfnForm.FormStyleConfigProperty.Value
.
FormStyleProperty
- class CfnForm.FormStyleProperty(*, horizontal_gap=None, outer_padding=None, vertical_gap=None)
Bases:
object
The
FormStyle
property specifies the configuration for the form’s style.- Parameters:
horizontal_gap (
Union
[IResolvable
,FormStyleConfigProperty
,Dict
[str
,Any
],None
]) – The spacing for the horizontal gap.outer_padding (
Union
[IResolvable
,FormStyleConfigProperty
,Dict
[str
,Any
],None
]) – The size of the outer padding for the form.vertical_gap (
Union
[IResolvable
,FormStyleConfigProperty
,Dict
[str
,Any
],None
]) – The spacing for the vertical gap.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_amplifyuibuilder as amplifyuibuilder form_style_property = amplifyuibuilder.CfnForm.FormStyleProperty( horizontal_gap=amplifyuibuilder.CfnForm.FormStyleConfigProperty( token_reference="tokenReference", value="value" ), outer_padding=amplifyuibuilder.CfnForm.FormStyleConfigProperty( token_reference="tokenReference", value="value" ), vertical_gap=amplifyuibuilder.CfnForm.FormStyleConfigProperty( token_reference="tokenReference", value="value" ) )
Attributes
- horizontal_gap
The spacing for the horizontal gap.
- outer_padding
The size of the outer padding for the form.
- vertical_gap
The spacing for the vertical gap.
SectionalElementProperty
- class CfnForm.SectionalElementProperty(*, type, excluded=None, level=None, orientation=None, position=None, text=None)
Bases:
object
The
SectionalElement
property specifies the configuration information for a visual helper element for a form.A sectional element can be a header, a text block, or a divider. These elements are static and not associated with any data.
- Parameters:
type (
str
) – The type of sectional element. Valid values areHeading
,Text
, andDivider
.excluded (
Union
[bool
,IResolvable
,None
]) –CfnForm.SectionalElementProperty.Excluded
.level (
Union
[int
,float
,None
]) – Specifies the size of the font for aHeading
sectional element. Valid values are1 | 2 | 3 | 4 | 5 | 6
.orientation (
Optional
[str
]) – Specifies the orientation for aDivider
sectional element. Valid values arehorizontal
orvertical
.position (
Union
[IResolvable
,FieldPositionProperty
,Dict
[str
,Any
],None
]) – Specifies the position of the text in a field for aText
sectional element.text (
Optional
[str
]) – The text for aText
sectional element.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_amplifyuibuilder as amplifyuibuilder sectional_element_property = amplifyuibuilder.CfnForm.SectionalElementProperty( type="type", # the properties below are optional excluded=False, level=123, orientation="orientation", position=amplifyuibuilder.CfnForm.FieldPositionProperty( below="below", fixed="fixed", right_of="rightOf" ), text="text" )
Attributes
- excluded
CfnForm.SectionalElementProperty.Excluded
.
- level
Specifies the size of the font for a
Heading
sectional element.Valid values are
1 | 2 | 3 | 4 | 5 | 6
.
- orientation
Specifies the orientation for a
Divider
sectional element.Valid values are
horizontal
orvertical
.
- position
Specifies the position of the text in a field for a
Text
sectional element.
- text
The text for a
Text
sectional element.
- type
The type of sectional element.
Valid values are
Heading
,Text
, andDivider
.
ValueMappingProperty
- class CfnForm.ValueMappingProperty(*, value, display_value=None)
Bases:
object
The
ValueMapping
property specifies the association between a complex object and a display value.Use
ValueMapping
to store how to represent complex objects when they are displayed.- Parameters:
value (
Union
[IResolvable
,FormInputValuePropertyProperty
,Dict
[str
,Any
]]) – The complex object.display_value (
Union
[IResolvable
,FormInputValuePropertyProperty
,Dict
[str
,Any
],None
]) – The value to display for the complex object.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_amplifyuibuilder as amplifyuibuilder value_mapping_property = amplifyuibuilder.CfnForm.ValueMappingProperty( value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty( value="value" ), # the properties below are optional display_value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty( value="value" ) )
Attributes
- display_value
The value to display for the complex object.
ValueMappingsProperty
- class CfnForm.ValueMappingsProperty(*, values)
Bases:
object
The
ValueMappings
property specifies the data binding configuration for a value map.- Parameters:
values (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,ValueMappingProperty
,Dict
[str
,Any
]]]]) – The value and display value pairs.- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_amplifyuibuilder as amplifyuibuilder value_mappings_property = amplifyuibuilder.CfnForm.ValueMappingsProperty( values=[amplifyuibuilder.CfnForm.ValueMappingProperty( value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty( value="value" ), # the properties below are optional display_value=amplifyuibuilder.CfnForm.FormInputValuePropertyProperty( value="value" ) )] )
Attributes
- values
The value and display value pairs.