CfnEnvironmentProps
- class aws_cdk.aws_datazone.CfnEnvironmentProps(*, domain_identifier, name, project_identifier, description=None, environment_account_identifier=None, environment_account_region=None, environment_profile_identifier=None, environment_role_arn=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.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.environment_account_identifier (
Optional
[str
]) – The identifier of the AWS account in which an environment exists.environment_account_region (
Optional
[str
]) – The AWS Region in which an environment exists.environment_profile_identifier (
Optional
[str
]) – The identifier of the environment profile that is used to create this Amazon DataZone environment.environment_role_arn (
Optional
[str
]) – The ARN of the environment role.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", name="name", project_identifier="projectIdentifier", # the properties below are optional description="description", environment_account_identifier="environmentAccountIdentifier", environment_account_region="environmentAccountRegion", environment_profile_identifier="environmentProfileIdentifier", environment_role_arn="environmentRoleArn", glossary_terms=["glossaryTerms"], user_parameters=[datazone.CfnEnvironment.EnvironmentParameterProperty( name="name", value="value" )] )
Attributes
- description
The description of the environment.
- domain_identifier
The identifier of the Amazon DataZone domain in which the environment is created.
- environment_account_identifier
The identifier of the AWS account in which an environment exists.
- environment_account_region
The AWS Region in which an environment exists.
- environment_profile_identifier
The identifier of the environment profile that is used to create this Amazon DataZone environment.
- environment_role_arn
The ARN of the environment role.
- glossary_terms
The glossary terms that can be used in this Amazon DataZone environment.
- name
The name of the Amazon DataZone environment.
- project_identifier
The identifier of the Amazon DataZone project in which this environment is created.
- user_parameters
The user parameters of this Amazon DataZone environment.