Data.Cloud.AmazonAPI.TAmazonNotificationEvent

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

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);
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
Data.Cloud.AmazonAPI.pas
Data.Cloud.AmazonAPI.hpp
Data.Cloud.AmazonAPI Data.Cloud.AmazonAPI


Beschreibung

Ein Thema für eine Amazon-Benachrichtigung.

Der Record TAmazonNotificationEvent gibt ein Thema für eine Amazon-Benachrichtigung an.

Das Feld Topic referenziert ein SNS-Thema (Simple Notification Service), an das Benachrichtigungen gesendet werden sollen. Zurzeit ist das Ereignis s3:ReducedRedundancyLostObject das einzige von Amazon S3 unterstützte Ereignis.

Siehe auch