CfnProjectMixinProps
- class aws_cdk.mixins_preview.aws_datazone.mixins.CfnProjectMixinProps(*, description=None, domain_identifier=None, domain_unit_id=None, glossary_terms=None, name=None, project_profile_id=None, project_profile_version=None, user_parameters=None)
Bases:
objectProperties for CfnProjectPropsMixin.
- Parameters:
description (
Optional[str]) – The description of a project.domain_identifier (
Optional[str]) – The identifier of a Amazon DataZone domain where the project exists.domain_unit_id (
Optional[str]) – The ID of the domain unit. This parameter is not required and if it is not specified, then the project is created at the root domain unit level.glossary_terms (
Optional[Sequence[str]]) – The glossary terms that can be used in this Amazon DataZone project.name (
Optional[str]) – The name of a project.project_profile_id (
Optional[str]) – The ID of the project profile.project_profile_version (
Optional[str]) – The project profile version to which the project should be updated. You can only specify the following string for this parameter:latest.user_parameters (
Union[IResolvable,Sequence[Union[IResolvable,EnvironmentConfigurationUserParameterProperty,Dict[str,Any]]],None]) – The user parameters of the project.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.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_project_mixin_props = datazone_mixins.CfnProjectMixinProps( description="description", domain_identifier="domainIdentifier", domain_unit_id="domainUnitId", glossary_terms=["glossaryTerms"], name="name", project_profile_id="projectProfileId", project_profile_version="projectProfileVersion", user_parameters=[datazone_mixins.CfnProjectPropsMixin.EnvironmentConfigurationUserParameterProperty( environment_configuration_name="environmentConfigurationName", environment_id="environmentId", environment_parameters=[datazone_mixins.CfnProjectPropsMixin.EnvironmentParameterProperty( name="name", value="value" )] )] )
Attributes
- description
The description of a project.
- domain_identifier
The identifier of a Amazon DataZone domain where the project exists.
- domain_unit_id
The ID of the domain unit.
This parameter is not required and if it is not specified, then the project is created at the root domain unit level.
- glossary_terms
The glossary terms that can be used in this Amazon DataZone project.
- name
The name of a project.
- project_profile_id
The ID of the project profile.
- project_profile_version
The project profile version to which the project should be updated.
You can only specify the following string for this parameter:
latest.
- user_parameters
The user parameters of the project.