CfnFormTypeProps

class aws_cdk.aws_datazone.CfnFormTypeProps(*, domain_identifier, model, name, owning_project_identifier, description=None, status=None)

Bases: object

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

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