CfnEntityTypeProps

class aws_cdk.aws_frauddetector.CfnEntityTypeProps(*, name, description=None, tags=None)

Bases: object

Properties for defining a CfnEntityType.

Parameters:
  • name (str) – The entity type name. Pattern: ^[0-9a-z_-]+$

  • description (Optional[str]) – The entity type description.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – A key and value pair.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-frauddetector-entitytype.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_entity_type_props = frauddetector.CfnEntityTypeProps(
    name="name",

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

Attributes

description

The entity type description.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-frauddetector-entitytype.html#cfn-frauddetector-entitytype-description

name

The entity type name.

Pattern: ^[0-9a-z_-]+$

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-frauddetector-entitytype.html#cfn-frauddetector-entitytype-name

tags

A key and value pair.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-frauddetector-entitytype.html#cfn-frauddetector-entitytype-tags