CfnFormTypeMixinProps
- class aws_cdk.mixins_preview.aws_datazone.mixins.CfnFormTypeMixinProps(*, description=None, domain_identifier=None, model=None, name=None, owning_project_identifier=None, status=None)
Bases:
objectProperties for CfnFormTypePropsMixin.
- Parameters:
description (
Optional[str]) – The description of the metadata form type.domain_identifier (
Optional[str]) – The identifier of the Amazon DataZone domain in which the form type exists.model (
Union[IResolvable,ModelProperty,Dict[str,Any],None]) – The model of the form type.name (
Optional[str]) – The name of the form type.owning_project_identifier (
Optional[str]) – The identifier of the project that owns the 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.mixins_preview.aws_datazone import mixins as datazone_mixins cfn_form_type_mixin_props = datazone_mixins.CfnFormTypeMixinProps( description="description", domain_identifier="domainIdentifier", model=datazone_mixins.CfnFormTypePropsMixin.ModelProperty( smithy="smithy" ), name="name", owning_project_identifier="owningProjectIdentifier", 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.