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: object

Properties 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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-description

domain_identifier

The identifier of the Amazon DataZone domain in which the form type exists.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-domainidentifier

model

The model of the form type.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-model

name

The name of the form type.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-name

owning_project_identifier

The identifier of the project that owns the form type.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-owningprojectidentifier

status

The status of the form type.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-status