CfnEnvironmentProfileProps

class aws_cdk.aws_datazone.CfnEnvironmentProfileProps(*, aws_account_id, aws_account_region, domain_identifier, environment_blueprint_identifier, name, project_identifier, description=None, user_parameters=None)

Bases: object

Properties for defining a CfnEnvironmentProfile.

Parameters:
  • aws_account_id (str) – The identifier of an AWS account in which an environment profile exists.

  • aws_account_region (str) – The AWS Region in which an environment profile exists.

  • domain_identifier (str) – The identifier of the Amazon DataZone domain in which the environment profile exists.

  • environment_blueprint_identifier (str) – The identifier of a blueprint with which an environment profile is created.

  • name (str) – The name of the environment profile.

  • project_identifier (str) – The identifier of a project in which an environment profile exists.

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

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

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentprofile.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_profile_props = datazone.CfnEnvironmentProfileProps(
    aws_account_id="awsAccountId",
    aws_account_region="awsAccountRegion",
    domain_identifier="domainIdentifier",
    environment_blueprint_identifier="environmentBlueprintIdentifier",
    name="name",
    project_identifier="projectIdentifier",

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

Attributes

aws_account_id

The identifier of an AWS account in which an environment profile exists.

See:

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

aws_account_region

The AWS Region in which an environment profile exists.

See:

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

description

The description of the environment profile.

See:

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

domain_identifier

The identifier of the Amazon DataZone domain in which the environment profile exists.

See:

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

environment_blueprint_identifier

The identifier of a blueprint with which an environment profile is created.

See:

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

name

The name of the environment profile.

See:

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

project_identifier

The identifier of a project in which an environment profile exists.

See:

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

user_parameters

The user parameters of this Amazon DataZone environment profile.

See:

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