CfnFormTypeProps
- class aws_cdk.aws_datazone.CfnFormTypeProps(*, domain_identifier, model, name, owning_project_identifier, description=None, status=None)
Bases:
objectProperties for defining a
CfnFormType.- Parameters:
domain_identifier (
str) – The identifier of the Amazon DataZone domain in which the form type exists.model (
Union[IResolvable,ModelProperty,Dict[str,Any]]) – The model of the form type.name (
str) – The name of the form type.owning_project_identifier (
str) – The identifier of the project that owns the form type.description (
Optional[str]) – The description of the metadata form type.status (
Optional[str]) – The status of the form type.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html
- 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 cfn_form_type_props = datazone.CfnFormTypeProps( domain_identifier="domainIdentifier", model=datazone.CfnFormType.ModelProperty( smithy="smithy" ), name="name", owning_project_identifier="owningProjectIdentifier", # the properties below are optional description="description", status="status" )
Attributes
- description
The description of the metadata form type.
- domain_identifier
The identifier of the Amazon DataZone domain in which the form type exists.
- model
The model of the form type.
- name
The name of the form type.
- owning_project_identifier
The identifier of the project that owns the form type.
- status
The status of the form type.