CfnProjectMixinProps

class aws_cdk.mixins_preview.aws_rekognition.mixins.CfnProjectMixinProps(*, project_name=None, tags=None)

Bases: object

Properties for CfnProjectPropsMixin.

Parameters:
  • project_name (Optional[str]) – The name of the project to create.

  • 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-rekognition-project.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_rekognition import mixins as rekognition_mixins

cfn_project_mixin_props = rekognition_mixins.CfnProjectMixinProps(
    project_name="projectName",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

project_name

The name of the project to create.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rekognition-project.html#cfn-rekognition-project-projectname

tags

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

See:

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