Class: Aws::Glacier::Types::VaultNotificationConfig

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

Overview

Note:

When making an API call, you may pass VaultNotificationConfig data as a hash:

{
  sns_topic: "string",
  events: ["string"],
}

Represents a vault’s notification configuration.

Instance Attribute Summary collapse

Instance Attribute Details

#eventsArray<String>

A list of one or more events for which Amazon Glacier will send a notification to the specified Amazon SNS topic.

Returns:

  • (Array<String>)


2791
2792
2793
2794
2795
# File 'lib/aws-sdk-glacier/types.rb', line 2791

class VaultNotificationConfig < Struct.new(
  :sns_topic,
  :events)
  include Aws::Structure
end

#sns_topicString

The Amazon Simple Notification Service (Amazon SNS) topic Amazon Resource Name (ARN).

Returns:

  • (String)


2791
2792
2793
2794
2795
# File 'lib/aws-sdk-glacier/types.rb', line 2791

class VaultNotificationConfig < Struct.new(
  :sns_topic,
  :events)
  include Aws::Structure
end