Class: Aws::RedshiftServerless::Types::TargetAction

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

Overview

Note:

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

Note:

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

A JSON format string of the Amazon Redshift Serverless API operation with input parameters. The following is an example of a target action.

‘“{”NamespaceName“: ”sampleNamespace“,”SnapshotName“: ”sampleSnapshot“, ”retentionPeriod“: ”1“}”`

Direct Known Subclasses

CreateSnapshot, Unknown

Defined Under Namespace

Classes: CreateSnapshot, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#create_snapshotTypes::CreateSnapshotScheduleActionParameters

The parameters that you can use to configure a [scheduled action] to create a snapshot. For more information about creating a scheduled action, see [CreateScheduledAction].

[1]: docs.aws.amazon.com/redshift-serverless/latest/APIReference/API_CreateScheduledAction.html



2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 2942

class TargetAction < Struct.new(
  :create_snapshot,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class CreateSnapshot < TargetAction; end
  class Unknown < TargetAction; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2942
2943
2944
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 2942

def unknown
  @unknown
end