CfnFieldMixinProps

class aws_cdk.mixins_preview.aws_cases.mixins.CfnFieldMixinProps(*, attributes=None, description=None, domain_id=None, name=None, tags=None, type=None)

Bases: object

Properties for CfnFieldPropsMixin.

Parameters:
  • attributes (Union[IResolvable, FieldAttributesProperty, Dict[str, Any], None]) – Union of field attributes.

  • description (Optional[str]) – Description of the field.

  • domain_id (Optional[str]) – The unique identifier of the Cases domain.

  • name (Optional[str]) – Name of the field.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of key-value pairs to apply to this resource.

  • type (Optional[str]) – Type of the field.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-field.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# 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_cases import mixins as cases_mixins

cfn_field_mixin_props = cases_mixins.CfnFieldMixinProps(
    attributes=cases_mixins.CfnFieldPropsMixin.FieldAttributesProperty(
        text=cases_mixins.CfnFieldPropsMixin.TextAttributesProperty(
            is_multiline=False
        )
    ),
    description="description",
    domain_id="domainId",
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    type="type"
)

Attributes

attributes

Union of field attributes.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-field.html#cfn-cases-field-attributes

description

Description of the field.

See:

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

domain_id

The unique identifier of the Cases domain.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-field.html#cfn-cases-field-domainid

name

Name of the field.

See:

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

tags

An array of key-value pairs to apply to this resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-field.html#cfn-cases-field-tags

type

Type of the field.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-field.html#cfn-cases-field-type