CfnEnvironmentActionsProps
- class aws_cdk.aws_datazone.CfnEnvironmentActionsProps(*, name, description=None, domain_identifier=None, environment_identifier=None, identifier=None, parameters=None)
Bases:
object
Properties for defining a
CfnEnvironmentActions
.- Parameters:
name (
str
) – The name of the environment action.description (
Optional
[str
]) – The description of the Amazon DataZone environment action.domain_identifier (
Optional
[str
]) – The Amazon DataZone domain ID of the environment action.environment_identifier (
Optional
[str
]) – The environment ID of the environment action.identifier (
Optional
[str
]) – The ID of the environment action.parameters (
Union
[IResolvable
,AwsConsoleLinkParametersProperty
,Dict
[str
,Any
],None
]) – The parameters 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 import aws_datazone as datazone cfn_environment_actions_props = datazone.CfnEnvironmentActionsProps( name="name", # the properties below are optional description="description", domain_identifier="domainIdentifier", environment_identifier="environmentIdentifier", identifier="identifier", parameters=datazone.CfnEnvironmentActions.AwsConsoleLinkParametersProperty( uri="uri" ) )
Attributes
- description
The description of the Amazon DataZone environment action.
- domain_identifier
The Amazon DataZone domain ID of the environment action.
- environment_identifier
The environment ID of the environment action.
- identifier
The ID of the environment action.
- name
The name of the environment action.
- parameters
The parameters of the console link specified as part of the environment action.