CfnEnvironmentMixinProps
- class aws_cdk.mixins_preview.aws_datazone.mixins.CfnEnvironmentMixinProps(*, description=None, domain_identifier=None, environment_account_identifier=None, environment_account_region=None, environment_profile_identifier=None, environment_role_arn=None, glossary_terms=None, name=None, project_identifier=None, user_parameters=None)
Bases:
objectProperties for CfnEnvironmentPropsMixin.
- Parameters:
description (
Optional[str]) – The description of the environment.domain_identifier (
Optional[str]) – The identifier of the Amazon DataZone domain in which the environment is created.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.name (
Optional[str]) – The name of the Amazon DataZone environment.project_identifier (
Optional[str]) – The identifier of the Amazon DataZone project in which this environment is created.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.mixins_preview.aws_datazone import mixins as datazone_mixins cfn_environment_mixin_props = datazone_mixins.CfnEnvironmentMixinProps( description="description", domain_identifier="domainIdentifier", environment_account_identifier="environmentAccountIdentifier", environment_account_region="environmentAccountRegion", environment_profile_identifier="environmentProfileIdentifier", environment_role_arn="environmentRoleArn", glossary_terms=["glossaryTerms"], name="name", project_identifier="projectIdentifier", user_parameters=[datazone_mixins.CfnEnvironmentPropsMixin.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.