Method: Aws::Redshift::Types::CreateEventSubscriptionMessage#source_ids

Defined in:
lib/aws-sdk-redshift/types.rb

#source_idsArray<String>

A list of one or more identifiers of Amazon Redshift source objects. All of the objects must be of the same type as was specified in the source type parameter. The event subscription will return only events generated by the specified objects. If not specified, then events are returned for all objects within the source type specified.

Example: my-cluster-1, my-cluster-2

Example: my-snapshot-20131010

Returns:

  • (Array<String>)


2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
# File 'lib/aws-sdk-redshift/types.rb', line 2783

class CreateEventSubscriptionMessage < Struct.new(
  :subscription_name,
  :sns_topic_arn,
  :source_type,
  :source_ids,
  :event_categories,
  :severity,
  :enabled,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end