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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-datazone/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.



387
388
389
390
391
392
393
394
395
396
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 387

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



387
388
389
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 387

def unknown
  @unknown
end