Class: Aws::DataZone::Types::ActionParameters

Inherits:
Struct
  • Object
show all
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

AwsConsoleLink, Unknown

Defined Under Namespace

Classes: AwsConsoleLink, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



286
287
288
# File 'lib/aws-sdk-datazone/types.rb', line 286

def unknown
  @unknown
end