Class: Aws::DataZone::Types::RedshiftStorageProperties

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-datazone/types.rb

Overview

Note:

RedshiftStorageProperties is a union - when making an API calls you must set exactly one of the members.

Note:

RedshiftStorageProperties is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RedshiftStorageProperties corresponding to the set member.

The Amazon Redshift storage properties.

Direct Known Subclasses

ClusterName, Unknown, WorkgroupName

Defined Under Namespace

Classes: ClusterName, Unknown, WorkgroupName

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_nameString

The cluster name in the Amazon Redshift storage properties.

Returns:

  • (String)


16347
16348
16349
16350
16351
16352
16353
16354
16355
16356
16357
16358
# File 'lib/aws-sdk-datazone/types.rb', line 16347

class RedshiftStorageProperties < Struct.new(
  :cluster_name,
  :workgroup_name,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ClusterName < RedshiftStorageProperties; end
  class WorkgroupName < RedshiftStorageProperties; end
  class Unknown < RedshiftStorageProperties; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



16347
16348
16349
# File 'lib/aws-sdk-datazone/types.rb', line 16347

def unknown
  @unknown
end

#workgroup_nameString

The workgroup name in the Amazon Redshift storage properties.

Returns:

  • (String)


16347
16348
16349
16350
16351
16352
16353
16354
16355
16356
16357
16358
# File 'lib/aws-sdk-datazone/types.rb', line 16347

class RedshiftStorageProperties < Struct.new(
  :cluster_name,
  :workgroup_name,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ClusterName < RedshiftStorageProperties; end
  class WorkgroupName < RedshiftStorageProperties; end
  class Unknown < RedshiftStorageProperties; end
end