CfnProjectProps

class aws_cdk.aws_datazone.CfnProjectProps(*, domain_identifier, name, description=None, glossary_terms=None)

Bases: object

Properties for defining a CfnProject.

Parameters:
  • domain_identifier (str) – The identifier of a Amazon DataZone domain where the project exists.

  • name (str) – The name of a project.

  • description (Optional[str]) – The description of a project.

  • glossary_terms (Optional[Sequence[str]]) – The glossary terms that can be used in this Amazon DataZone project.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-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 import aws_datazone as datazone

cfn_project_props = datazone.CfnProjectProps(
    domain_identifier="domainIdentifier",
    name="name",

    # the properties below are optional
    description="description",
    glossary_terms=["glossaryTerms"]
)

Attributes

description

The description of a project.

See:

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

domain_identifier

The identifier of a Amazon DataZone domain where the project exists.

See:

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

glossary_terms

The glossary terms that can be used in this Amazon DataZone project.

See:

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

name

The name of a project.

See:

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