Class: Aws::RedshiftServerless::Types::ServerlessTrack
- Inherits:
-
Struct
- Object
- Struct
- Aws::RedshiftServerless::Types::ServerlessTrack
- Defined in:
- gems/aws-sdk-redshiftserverless/lib/aws-sdk-redshiftserverless/types.rb
Overview
Defines a track that determines which Amazon Redshift version to apply
after a new version is released. If the value for ServerlessTrack is
current, the workgroup is updated to the most recently certified
release. If the value is trailing, the workgroup is updated to the
previously certified release.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#track_name ⇒ String
The name of the track.
-
#update_targets ⇒ Array<Types::UpdateTarget>
An array of
UpdateTargetobjects to update with the track. -
#workgroup_version ⇒ String
The workgroup version number for the workgroup release.
Instance Attribute Details
#track_name ⇒ String
The name of the track. Valid values are current and trailing.
3152 3153 3154 3155 3156 3157 3158 |
# File 'gems/aws-sdk-redshiftserverless/lib/aws-sdk-redshiftserverless/types.rb', line 3152 class ServerlessTrack < Struct.new( :track_name, :update_targets, :workgroup_version) SENSITIVE = [] include Aws::Structure end |
#update_targets ⇒ Array<Types::UpdateTarget>
An array of UpdateTarget objects to update with the track.
3152 3153 3154 3155 3156 3157 3158 |
# File 'gems/aws-sdk-redshiftserverless/lib/aws-sdk-redshiftserverless/types.rb', line 3152 class ServerlessTrack < Struct.new( :track_name, :update_targets, :workgroup_version) SENSITIVE = [] include Aws::Structure end |
#workgroup_version ⇒ String
The workgroup version number for the workgroup release.
3152 3153 3154 3155 3156 3157 3158 |
# File 'gems/aws-sdk-redshiftserverless/lib/aws-sdk-redshiftserverless/types.rb', line 3152 class ServerlessTrack < Struct.new( :track_name, :update_targets, :workgroup_version) SENSITIVE = [] include Aws::Structure end |