CfnFieldMixinProps
- class aws_cdk.mixins_preview.aws_cases.mixins.CfnFieldMixinProps(*, description=None, domain_id=None, name=None, tags=None, type=None)
Bases:
objectProperties for CfnFieldPropsMixin.
- Parameters:
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( description="description", domain_id="domainId", name="name", tags=[CfnTag( key="key", value="value" )], type="type" )
Attributes
- description
Description of the field.
- domain_id
The unique identifier of the Cases domain.
- name
Name of the field.
- tags
An array of key-value pairs to apply to this resource.
- type
Type of the field.