CfnProjectProfileProps
- class aws_cdk.aws_datazone.CfnProjectProfileProps(*, name, allow_custom_project_resource_tags=None, description=None, domain_identifier=None, domain_unit_identifier=None, environment_configurations=None, project_resource_tags=None, project_resource_tags_description=None, status=None, use_default_configurations=None)
Bases:
objectProperties for defining a
CfnProjectProfile.- Parameters:
name (
str) – The name of a project profile.allow_custom_project_resource_tags (
Union[bool,IResolvable,None])description (
Optional[str]) – The description of the project profile.domain_identifier (
Optional[str]) – A domain ID of the project profile.domain_unit_identifier (
Optional[str]) – A domain unit ID of the project profile.environment_configurations (
Union[IResolvable,Sequence[Union[IResolvable,EnvironmentConfigurationProperty,Dict[str,Any]]],None]) – Environment configurations of a project profile.project_resource_tags (
Union[IResolvable,Sequence[Union[IResolvable,ResourceTagParameterProperty,Dict[str,Any]]],None])project_resource_tags_description (
Optional[str])status (
Optional[str]) – The status of a project profile.use_default_configurations (
Union[bool,IResolvable,None])
- 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_project_profile_props = datazone.CfnProjectProfileProps( name="name", # the properties below are optional allow_custom_project_resource_tags=False, description="description", domain_identifier="domainIdentifier", domain_unit_identifier="domainUnitIdentifier", environment_configurations=[datazone.CfnProjectProfile.EnvironmentConfigurationProperty( aws_region=datazone.CfnProjectProfile.RegionProperty( region_name="regionName" ), environment_blueprint_id="environmentBlueprintId", name="name", # the properties below are optional aws_account=datazone.CfnProjectProfile.AwsAccountProperty( aws_account_id="awsAccountId" ), configuration_parameters=datazone.CfnProjectProfile.EnvironmentConfigurationParametersDetailsProperty( parameter_overrides=[datazone.CfnProjectProfile.EnvironmentConfigurationParameterProperty( is_editable=False, name="name", value="value" )], resolved_parameters=[datazone.CfnProjectProfile.EnvironmentConfigurationParameterProperty( is_editable=False, name="name", value="value" )], ssm_path="ssmPath" ), deployment_mode="deploymentMode", deployment_order=123, description="description", environment_configuration_id="environmentConfigurationId" )], project_resource_tags=[datazone.CfnProjectProfile.ResourceTagParameterProperty( is_value_editable=False, key="key", value="value" )], project_resource_tags_description="projectResourceTagsDescription", status="status", use_default_configurations=False )
Attributes
- allow_custom_project_resource_tags
-
- Type:
see
- description
The description of the project profile.
- domain_identifier
A domain ID of the project profile.
- domain_unit_identifier
A domain unit ID of the project profile.
- environment_configurations
Environment configurations of a project profile.
- name
The name of a project profile.
- project_resource_tags
-
- Type:
see
- project_resource_tags_description
-
- Type:
see
- status
The status of a project profile.