CfnEnvironmentProfilePropsMixin

class aws_cdk.mixins_preview.aws_datazone.mixins.CfnEnvironmentProfilePropsMixin(props, *, strategy=None)

Bases: Mixin

The details of an environment profile.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentprofile.html

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:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

IConstruct

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 x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

Stability:

experimental

EnvironmentParameterProperty

class CfnEnvironmentProfilePropsMixin.EnvironmentParameterProperty(*, name=None, value=None)

Bases: object

The 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentprofile-environmentparameter.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

environment_parameter_property = datazone_mixins.CfnEnvironmentProfilePropsMixin.EnvironmentParameterProperty(
    name="name",
    value="value"
)

Attributes

name

The name specified in the environment parameter.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentprofile-environmentparameter.html#cfn-datazone-environmentprofile-environmentparameter-name

value

The value of the environment profile.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentprofile-environmentparameter.html#cfn-datazone-environmentprofile-environmentparameter-value