CfnFormTypePropsMixin

class aws_cdk.mixins_preview.aws_datazone.mixins.CfnFormTypePropsMixin(props, *, strategy=None)

Bases: Mixin

The details of the metadata form type.

See:

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

CloudformationResource:

AWS::DataZone::FormType

Mixin:

true

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 import mixins
from aws_cdk.mixins_preview.aws_datazone import mixins as datazone_mixins

cfn_form_type_props_mixin = datazone_mixins.CfnFormTypePropsMixin(datazone_mixins.CfnFormTypeMixinProps(
    description="description",
    domain_identifier="domainIdentifier",
    model=datazone_mixins.CfnFormTypePropsMixin.ModelProperty(
        smithy="smithy"
    ),
    name="name",
    owning_project_identifier="owningProjectIdentifier",
    status="status"
),
    strategy=mixins.PropertyMergeStrategy.OVERRIDE
)

Create a mixin to apply properties to AWS::DataZone::FormType.

Parameters:
  • props (Union[CfnFormTypeMixinProps, Dict[str, Any]]) – L1 properties to apply.

  • strategy (Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

None

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['description', 'domainIdentifier', 'model', 'name', 'owningProjectIdentifier', 'status']

Static Methods

classmethod is_mixin(x)

(experimental) Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

Stability:

experimental

ModelProperty

class CfnFormTypePropsMixin.ModelProperty(*, smithy=None)

Bases: object

Indicates the smithy model of the API.

Parameters:

smithy (Optional[str])

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-formtype-model.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

model_property = datazone_mixins.CfnFormTypePropsMixin.ModelProperty(
    smithy="smithy"
)

Attributes

smithy

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

Type:

see