CfnListProps
- class aws_cdk.aws_frauddetector.CfnListProps(*, name, description=None, elements=None, tags=None, variable_type=None)
Bases:
objectProperties for defining a
CfnList.- Parameters:
name (
str) – The name of the list.description (
Optional[str]) – The description of the list.elements (
Optional[Sequence[str]]) – The elements in 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
- Link:
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. import aws_cdk.aws_frauddetector as frauddetector cfn_list_props = frauddetector.CfnListProps( name="name", # the properties below are optional description="description", elements=["elements"], 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