Class: Aws::DataZone::Types::RedshiftStorageProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::RedshiftStorageProperties
- 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
Defined Under Namespace
Classes: ClusterName, Unknown, WorkgroupName
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_name ⇒ String
The cluster name in the Amazon Redshift storage properties.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#workgroup_name ⇒ String
The workgroup name in the Amazon Redshift storage properties.
Instance Attribute Details
#cluster_name ⇒ String
The cluster name in the Amazon Redshift storage properties.
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 |
#unknown ⇒ Object
Returns the value of attribute unknown
15467 15468 15469 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 15467 def unknown @unknown end |
#workgroup_name ⇒ String
The workgroup name in the Amazon Redshift storage properties.
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 |