FormTypeReference
- class aws_cdk.aws_datazone.FormTypeReference(*, domain_identifier, form_type_identifier)
Bases:
object
A reference to a FormType resource.
- Parameters:
domain_identifier (
str
) – The DomainIdentifier of the FormType resource.form_type_identifier (
str
) – The FormTypeIdentifier of the FormType 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_datazone as datazone form_type_reference = datazone.FormTypeReference( domain_identifier="domainIdentifier", form_type_identifier="formTypeIdentifier" )
Attributes
- domain_identifier
The DomainIdentifier of the FormType resource.
- form_type_identifier
The FormTypeIdentifier of the FormType resource.