CfnFieldProps

class aws_cdk.aws_cases.CfnFieldProps(*, name, type, description=None, domain_id=None, tags=None)

Bases: object

Properties for defining a CfnField.

Parameters:
  • name (str) – Name of the field.

  • type (str) – Type of the field.

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

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

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – 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

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 import aws_cases as cases

cfn_field_props = cases.CfnFieldProps(
    name="name",
    type="type",

    # the properties below are optional
    description="description",
    domain_id="domainId",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

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