CfnProjectProfileProps
- class aws_cdk.aws_datazone.CfnProjectProfileProps(*, name, description=None, domain_identifier=None, domain_unit_identifier=None, environment_configurations=None, status=None)
Bases:
object
Properties for defining a
CfnProjectProfile
.- Parameters:
name (
str
) – The name of a project profile.description (
Optional
[str
]) – The description of the project profile.domain_identifier (
Optional
[str
])domain_unit_identifier (
Optional
[str
])environment_configurations (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,EnvironmentConfigurationProperty
,Dict
[str
,Any
]]],None
])status (
Optional
[str
]) – The status of a project 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_project_profile_props = datazone.CfnProjectProfileProps( name="name", # the properties below are optional 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", id="id" )], status="status" )
Attributes
- description
The description of the project profile.
- domain_identifier
-
- Type:
see
- domain_unit_identifier
-
- Type:
see
- environment_configurations
-
- Type:
see
- name
The name of a project profile.
- status
The status of a project profile.