CfnListMixinProps
- class aws_cdk.mixins_preview.aws_frauddetector.mixins.CfnListMixinProps(*, description=None, elements=None, name=None, tags=None, variable_type=None)
Bases:
objectProperties for CfnListPropsMixin.
- Parameters:
description (
Optional[str]) – The description of the list.elements (
Optional[Sequence[str]]) – The elements in the list.name (
Optional[str]) – The name of the list.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .variable_type (
Optional[str]) – The variable type of the list. For more information, see Variable types
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-frauddetector-list.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_frauddetector import mixins as frauddetector_mixins cfn_list_mixin_props = frauddetector_mixins.CfnListMixinProps( description="description", elements=["elements"], name="name", tags=[CfnTag( key="key", value="value" )], variable_type="variableType" )
Attributes
- description
The description of the list.
- elements
The elements in the list.
- name
The name of the list.
- variable_type
The variable type of the list.
For more information, see Variable types