Class: Aws::DataZone::Types::ActionParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::ActionParameters
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-datazone/types.rb
Overview
Note:
ActionParameters is a union - when making an API calls you must set exactly one of the members.
Note:
ActionParameters is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ActionParameters corresponding to the set member.
The parameters of the environment action.
Direct Known Subclasses
Defined Under Namespace
Classes: AwsConsoleLink, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aws_console_link ⇒ Types::AwsConsoleLinkParameters
The console link specified as part of the environment action.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#aws_console_link ⇒ Types::AwsConsoleLinkParameters
The console link specified as part of the environment action.
286 287 288 289 290 291 292 293 294 295 |
# File 'lib/aws-sdk-datazone/types.rb', line 286 class ActionParameters < Struct.new( :aws_console_link, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AwsConsoleLink < ActionParameters; end class Unknown < ActionParameters; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
286 287 288 |
# File 'lib/aws-sdk-datazone/types.rb', line 286 def unknown @unknown end |