Skip to main content

TSNSMessageAttributes

Class in AWS.SNS

Dictionary class for message attributes.

Ancestors

  • TDictionary<string,ISNSMessageAttributeValue>

Methods

AddBinary

procedure AddBinary(const AName, AValue: string);

Adds a Binary value to the dictionary.

Parameters

NameDescription
ANameThe name the value will be stored under.
AValueBase64 representation of the data.

AddNumber

procedure AddNumber(const AName, AValue: string);

Adds a Number value to the dictionary.

Parameters

NameDescription
ANameThe name the value will be stored under.
AValueString containing a numeric value.

AddString

procedure AddString(const AName, AValue: string);

Adds a String value to the dictionary.

Parameters

NameDescription
ANameThe name the value will be stored under.
AValueString value.

AddStringArray

procedure AddStringArray(const AName: string; const AStringValues: array of string);

Adds a String.Array value to the dictionary.

Parameters

NameDescription
ANameThe name the value will be stored under.
AStringValuesArray of string values.