CfnEnvironmentProps

class aws_cdk.aws_datazone.CfnEnvironmentProps(*, domain_identifier, environment_profile_identifier, name, project_identifier, description=None, glossary_terms=None, user_parameters=None)

Bases: object

Properties for defining a CfnEnvironment.

Parameters:
  • domain_identifier (str) – The identifier of the Amazon DataZone domain in which the environment is created.

  • environment_profile_identifier (str) – The identifier of the environment profile that is used to create this Amazon DataZone environment.

  • name (str) – The name of the Amazon DataZone environment.

  • project_identifier (str) – The identifier of the Amazon DataZone project in which this environment is created.

  • description (Optional[str]) – The description of the environment.

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

  • user_parameters (Union[IResolvable, Sequence[Union[IResolvable, EnvironmentParameterProperty, Dict[str, Any]]], None]) – The user parameters of this Amazon DataZone environment.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environment.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_environment_props = datazone.CfnEnvironmentProps(
    domain_identifier="domainIdentifier",
    environment_profile_identifier="environmentProfileIdentifier",
    name="name",
    project_identifier="projectIdentifier",

    # the properties below are optional
    description="description",
    glossary_terms=["glossaryTerms"],
    user_parameters=[datazone.CfnEnvironment.EnvironmentParameterProperty(
        name="name",
        value="value"
    )]
)

Attributes

description

The description of the environment.

See:

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

domain_identifier

The identifier of the Amazon DataZone domain in which the environment is created.

See:

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

environment_profile_identifier

The identifier of the environment profile that is used to create this Amazon DataZone environment.

See:

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

glossary_terms

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

See:

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

name

The name of the Amazon DataZone environment.

See:

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

project_identifier

The identifier of the Amazon DataZone project in which this environment is created.

See:

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

user_parameters

The user parameters of this Amazon DataZone environment.

See:

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