CfnEnvironmentActionsPropsMixin
- class aws_cdk.mixins_preview.aws_datazone.mixins.CfnEnvironmentActionsPropsMixin(props, *, strategy=None)
Bases:
MixinThe 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:
- 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:
props (
Union[CfnEnvironmentActionsMixinProps,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 = ['description', 'domainIdentifier', 'environmentIdentifier', 'identifier', 'name', 'parameters']
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
AwsConsoleLinkParametersProperty
- class CfnEnvironmentActionsPropsMixin.AwsConsoleLinkParametersProperty(*, uri=None)
Bases:
objectThe 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:
- 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.