CfnEnvironmentActionsPropsMixin

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

Bases: Mixin

The details about the specified action configured for an environment.

For example, the details of the specified console links for an analytics tool that is available in this environment.

See:

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

CloudformationResource:

AWS::DataZone::EnvironmentActions

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_actions_props_mixin = datazone_mixins.CfnEnvironmentActionsPropsMixin(datazone_mixins.CfnEnvironmentActionsMixinProps(
    description="description",
    domain_identifier="domainIdentifier",
    environment_identifier="environmentIdentifier",
    identifier="identifier",
    name="name",
    parameters=datazone_mixins.CfnEnvironmentActionsPropsMixin.AwsConsoleLinkParametersProperty(
        uri="uri"
    )
),
    strategy=mixins.PropertyMergeStrategy.OVERRIDE
)

Create a mixin to apply properties to AWS::DataZone::EnvironmentActions.

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 = ['description', 'domainIdentifier', 'environmentIdentifier', 'identifier', 'name', 'parameters']

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

AwsConsoleLinkParametersProperty

class CfnEnvironmentActionsPropsMixin.AwsConsoleLinkParametersProperty(*, uri=None)

Bases: object

The parameters of the console link specified as part of the environment action.

Parameters:

uri (Optional[str]) – The URI of the console link specified as part of the environment action.

See:

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

aws_console_link_parameters_property = datazone_mixins.CfnEnvironmentActionsPropsMixin.AwsConsoleLinkParametersProperty(
    uri="uri"
)

Attributes

uri

The URI of the console link specified as part of the environment action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentactions-awsconsolelinkparameters.html#cfn-datazone-environmentactions-awsconsolelinkparameters-uri