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
| Name | Description |
|---|---|
AName | The name the value will be stored under. |
AValue | Base64 representation of the data. |
AddNumber
procedure AddNumber(const AName, AValue: string);
Adds a Number value to the dictionary.
Parameters
| Name | Description |
|---|---|
AName | The name the value will be stored under. |
AValue | String containing a numeric value. |
AddString
procedure AddString(const AName, AValue: string);
Adds a String value to the dictionary.
Parameters
| Name | Description |
|---|---|
AName | The name the value will be stored under. |
AValue | String value. |
AddStringArray
procedure AddStringArray(const AName: string; const AStringValues: array of string);
Adds a String.Array value to the dictionary.
Parameters
| Name | Description |
|---|---|
AName | The name the value will be stored under. |
AStringValues | Array of string values. |