CfnLayoutMixinProps
- class aws_cdk.mixins_preview.aws_cases.mixins.CfnLayoutMixinProps(*, content=None, domain_id=None, name=None, tags=None)
Bases:
objectProperties for CfnLayoutPropsMixin.
- Parameters:
content (
Union[IResolvable,LayoutContentProperty,Dict[str,Any],None]) – Object to store union of different versions of layout content.domain_id (
Optional[str]) – The unique identifier of the Cases domain.name (
Optional[str]) – The name of the layout.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-layout.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_layout_mixin_props = cases_mixins.CfnLayoutMixinProps( content=cases_mixins.CfnLayoutPropsMixin.LayoutContentProperty( basic=cases_mixins.CfnLayoutPropsMixin.BasicLayoutProperty( more_info=cases_mixins.CfnLayoutPropsMixin.LayoutSectionsProperty( sections=[cases_mixins.CfnLayoutPropsMixin.SectionProperty( field_group=cases_mixins.CfnLayoutPropsMixin.FieldGroupProperty( fields=[cases_mixins.CfnLayoutPropsMixin.FieldItemProperty( id="id" )], name="name" ) )] ), top_panel=cases_mixins.CfnLayoutPropsMixin.LayoutSectionsProperty( sections=[cases_mixins.CfnLayoutPropsMixin.SectionProperty( field_group=cases_mixins.CfnLayoutPropsMixin.FieldGroupProperty( fields=[cases_mixins.CfnLayoutPropsMixin.FieldItemProperty( id="id" )], name="name" ) )] ) ) ), domain_id="domainId", name="name", tags=[CfnTag( key="key", value="value" )] )
Attributes
- content
Object to store union of different versions of layout content.
- domain_id
The unique identifier of the Cases domain.
- name
The name of the layout.
- tags
An array of key-value pairs to apply to this resource.