CfnEnvironmentProfilePropsMixin
- class aws_cdk.mixins_preview.aws_datazone.mixins.CfnEnvironmentProfilePropsMixin(props, *, strategy=None)
Bases:
MixinThe details of an environment profile.
- See:
- CloudformationResource:
AWS::DataZone::EnvironmentProfile
- Mixin:
true
- 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 import mixins from aws_cdk.mixins_preview.aws_datazone import mixins as datazone_mixins cfn_environment_profile_props_mixin = datazone_mixins.CfnEnvironmentProfilePropsMixin(datazone_mixins.CfnEnvironmentProfileMixinProps( aws_account_id="awsAccountId", aws_account_region="awsAccountRegion", description="description", domain_identifier="domainIdentifier", environment_blueprint_identifier="environmentBlueprintIdentifier", name="name", project_identifier="projectIdentifier", user_parameters=[datazone_mixins.CfnEnvironmentProfilePropsMixin.EnvironmentParameterProperty( name="name", value="value" )] ), strategy=mixins.PropertyMergeStrategy.OVERRIDE )
Create a mixin to apply properties to
AWS::DataZone::EnvironmentProfile.- Parameters:
props (
Union[CfnEnvironmentProfileMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['awsAccountId', 'awsAccountRegion', 'description', 'domainIdentifier', 'environmentBlueprintIdentifier', 'name', 'projectIdentifier', 'userParameters']
Static Methods
- classmethod is_mixin(x)
(experimental) Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.- Stability:
experimental
EnvironmentParameterProperty
- class CfnEnvironmentProfilePropsMixin.EnvironmentParameterProperty(*, name=None, value=None)
Bases:
objectThe parameter details of an environment profile.
- Parameters:
name (
Optional[str]) – The name specified in the environment parameter.value (
Optional[str]) – The value of the environment 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.mixins_preview.aws_datazone import mixins as datazone_mixins environment_parameter_property = datazone_mixins.CfnEnvironmentProfilePropsMixin.EnvironmentParameterProperty( name="name", value="value" )
Attributes
- name
The name specified in the environment parameter.
- value
The value of the environment profile.