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:
- 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.
- aws_account_region
The AWS Region in which an environment profile exists.
- description
The description of the environment profile.
- domain_identifier
The identifier of the Amazon DataZone domain in which the environment profile exists.
- environment_blueprint_identifier
The identifier of a blueprint with which an environment profile is created.
- name
The name of the environment profile.
- project_identifier
The identifier of a project in which an environment profile exists.
- user_parameters
The user parameters of this Amazon DataZone environment profile.