CfnLabelMixinProps

class aws_cdk.mixins_preview.aws_frauddetector.mixins.CfnLabelMixinProps(*, description=None, name=None, tags=None)

Bases: object

Properties for CfnLabelPropsMixin.

Parameters:
  • description (Optional[str]) – The label description.

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

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-frauddetector-label.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_label_mixin_props = frauddetector_mixins.CfnLabelMixinProps(
    description="description",
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

description

The label description.

See:

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

name

The label name.

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

See:

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

tags

An array of key-value pairs to apply to this resource.

For more information, see Tag .

See:

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