Class: Aws::RedshiftServerless::Types::ServerlessTrack
- Inherits:
-
Struct
- Object
- Struct
- Aws::RedshiftServerless::Types::ServerlessTrack
- Includes:
- Structure
- Defined in:
- 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 ‘UpdateTarget` objects 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`.
3199 3200 3201 3202 3203 3204 3205 |
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 3199 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.
3199 3200 3201 3202 3203 3204 3205 |
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 3199 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.
3199 3200 3201 3202 3203 3204 3205 |
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 3199 class ServerlessTrack < Struct.new( :track_name, :update_targets, :workgroup_version) SENSITIVE = [] include Aws::Structure end |