Data.Cloud.AmazonAPI.TAmazonNotificationEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TAmazonNotificationEvent = record
    Topic: string;
    Event: string;
    class function Create(const Topic, Event: string): TAmazonNotificationEvent; static;
  end;

C++

struct DECLSPEC_DRECORD TAmazonNotificationEvent
{
public:
    System::UnicodeString Topic;
    System::UnicodeString Event;
    static TAmazonNotificationEvent __fastcall Create(const System::UnicodeString Topic, const System::UnicodeString Event);
};

Properties

Type Visibility Source Unit Parent
record
struct
public
Data.Cloud.AmazonAPI.pas
Data.Cloud.AmazonAPI.hpp
Data.Cloud.AmazonAPI Data.Cloud.AmazonAPI

Description

A topic for Amazon notification.

The TAmazonNotificationEvent record specifies a topic for an Amazon notification.

The Topic field references an SNS (Simple Notification Service) topic to which to send notifications. Currently, the s3:ReducedRedundancyLostObject event is the only event supported by Amazon S3.

See Also