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

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


15467
15468
15469
15470
15471
15472
15473
15474
15475
15476
15477
15478
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 15467

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



15467
15468
15469
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 15467

def unknown
  @unknown
end

#workgroup_nameString

The workgroup name in the Amazon Redshift storage properties.

Returns:

  • (String)


15467
15468
15469
15470
15471
15472
15473
15474
15475
15476
15477
15478
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 15467

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