1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Gives a detailed description of failed messages in the batch.
type BatchResultErrorEntry struct {
// An error code representing why the action failed on this entry.
//
// This member is required.
Code *string
// The Id of an entry in a batch request
//
// This member is required.
Id *string
// Specifies whether the error happened due to the caller of the batch API action.
//
// This member is required.
SenderFault bool
// A message explaining why the action failed on this entry.
Message *string
noSmithyDocumentSerde
}
// The endpoint for mobile app and device.
type Endpoint struct {
// Attributes for endpoint.
Attributes map[string]string
// The EndpointArn for mobile app and device.
EndpointArn *string
noSmithyDocumentSerde
}
// The user-specified message attribute value. For string data types, the value
// attribute has the same restrictions on the content as the message body. For more
// information, see Publish (https://docs.aws.amazon.com/sns/latest/api/API_Publish.html)
// . Name, type, and value must not be empty or null. In addition, the message body
// should not be empty or null. All parts of the message attribute, including name,
// type, and value, are included in the message size restriction, which is
// currently 256 KB (262,144 bytes). For more information, see Amazon SNS message
// attributes (https://docs.aws.amazon.com/sns/latest/dg/SNSMessageAttributes.html)
// and Publishing to a mobile phone (https://docs.aws.amazon.com/sns/latest/dg/sms_publish-to-phone.html)
// in the Amazon SNS Developer Guide.
type MessageAttributeValue struct {
// Amazon SNS supports the following logical data types: String, String.Array,
// Number, and Binary. For more information, see Message Attribute Data Types (https://docs.aws.amazon.com/sns/latest/dg/SNSMessageAttributes.html#SNSMessageAttributes.DataTypes)
// .
//
// This member is required.
DataType *string
// Binary type attributes can store any binary data, for example, compressed data,
// encrypted data, or images.
BinaryValue []byte
// Strings are Unicode with UTF8 binary encoding. For a list of code values, see
// ASCII Printable Characters (https://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters)
// .
StringValue *string
noSmithyDocumentSerde
}
// A list of phone numbers and their metadata.
type PhoneNumberInformation struct {
// The date and time when the phone number was created.
CreatedAt *time.Time
// The two-character code for the country or region, in ISO 3166-1 alpha-2 format.
Iso2CountryCode *string
// The capabilities of each phone number.
NumberCapabilities []NumberCapability
// The phone number.
PhoneNumber *string
// The list of supported routes.
RouteType RouteType
// The status of the phone number.
Status *string
noSmithyDocumentSerde
}
// Platform application object.
type PlatformApplication struct {
// Attributes for platform application object.
Attributes map[string]string
// PlatformApplicationArn for platform application object.
PlatformApplicationArn *string
noSmithyDocumentSerde
}
// Contains the details of a single Amazon SNS message along with an Id that
// identifies a message within the batch.
type PublishBatchRequestEntry struct {
// An identifier for the message in this batch. The Ids of a batch request must be
// unique within a request. This identifier can have up to 80 characters. The
// following characters are accepted: alphanumeric characters, hyphens(-), and
// underscores (_).
//
// This member is required.
Id *string
// The body of the message.
//
// This member is required.
Message *string
// Each message attribute consists of a Name , Type , and Value . For more
// information, see Amazon SNS message attributes (https://docs.aws.amazon.com/sns/latest/dg/sns-message-attributes.html)
// in the Amazon SNS Developer Guide.
MessageAttributes map[string]MessageAttributeValue
// This parameter applies only to FIFO (first-in-first-out) topics. The token used
// for deduplication of messages within a 5-minute minimum deduplication interval.
// If a message with a particular MessageDeduplicationId is sent successfully,
// subsequent messages with the same MessageDeduplicationId are accepted
// successfully but aren't delivered.
// - Every message must have a unique MessageDeduplicationId .
// - You may provide a MessageDeduplicationId explicitly.
// - If you aren't able to provide a MessageDeduplicationId and you enable
// ContentBasedDeduplication for your topic, Amazon SNS uses a SHA-256 hash to
// generate the MessageDeduplicationId using the body of the message (but not the
// attributes of the message).
// - If you don't provide a MessageDeduplicationId and the topic doesn't have
// ContentBasedDeduplication set, the action fails with an error.
// - If the topic has a ContentBasedDeduplication set, your
// MessageDeduplicationId overrides the generated one.
// - When ContentBasedDeduplication is in effect, messages with identical content
// sent within the deduplication interval are treated as duplicates and only one
// copy of the message is delivered.
// - If you send one message with ContentBasedDeduplication enabled, and then
// another message with a MessageDeduplicationId that is the same as the one
// generated for the first MessageDeduplicationId , the two messages are treated
// as duplicates and only one copy of the message is delivered.
// The MessageDeduplicationId is available to the consumer of the message (this
// can be useful for troubleshooting delivery issues). If a message is sent
// successfully but the acknowledgement is lost and the message is resent with the
// same MessageDeduplicationId after the deduplication interval, Amazon SNS can't
// detect duplicate messages. Amazon SNS continues to keep track of the message
// deduplication ID even after the message is received and deleted. The length of
// MessageDeduplicationId is 128 characters. MessageDeduplicationId can contain
// alphanumeric characters (a-z, A-Z, 0-9) and punctuation
// (!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~) .
MessageDeduplicationId *string
// This parameter applies only to FIFO (first-in-first-out) topics. The tag that
// specifies that a message belongs to a specific message group. Messages that
// belong to the same message group are processed in a FIFO manner (however,
// messages in different message groups might be processed out of order). To
// interleave multiple ordered streams within a single topic, use MessageGroupId
// values (for example, session data for multiple users). In this scenario,
// multiple consumers can process the topic, but the session data of each user is
// processed in a FIFO fashion. You must associate a non-empty MessageGroupId with
// a message. If you don't provide a MessageGroupId , the action fails. The length
// of MessageGroupId is 128 characters. MessageGroupId can contain alphanumeric
// characters (a-z, A-Z, 0-9) and punctuation (!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~) .
// MessageGroupId is required for FIFO topics. You can't use it for standard topics.
MessageGroupId *string
// Set MessageStructure to json if you want to send a different message for each
// protocol. For example, using one publish action, you can send a short message to
// your SMS subscribers and a longer message to your email subscribers. If you set
// MessageStructure to json , the value of the Message parameter must:
// - be a syntactically valid JSON object; and
// - contain at least a top-level JSON key of "default" with a value that is a
// string.
// You can define other top-level keys that define the message you want to send to
// a specific transport protocol (e.g. http).
MessageStructure *string
// The subject of the batch message.
Subject *string
noSmithyDocumentSerde
}
// Encloses data related to a successful message in a batch request for topic.
type PublishBatchResultEntry struct {
// The Id of an entry in a batch request.
Id *string
// An identifier for the message.
MessageId *string
// This parameter applies only to FIFO (first-in-first-out) topics. The large,
// non-consecutive number that Amazon SNS assigns to each message. The length of
// SequenceNumber is 128 bits. SequenceNumber continues to increase for a
// particular MessageGroupId .
SequenceNumber *string
noSmithyDocumentSerde
}
// A verified or pending destination phone number in the SMS sandbox. When you
// start using Amazon SNS to send SMS messages, your Amazon Web Services account is
// in the SMS sandbox. The SMS sandbox provides a safe environment for you to try
// Amazon SNS features without risking your reputation as an SMS sender. While your
// Amazon Web Services account is in the SMS sandbox, you can use all of the
// features of Amazon SNS. However, you can send SMS messages only to verified
// destination phone numbers. For more information, including how to move out of
// the sandbox to send messages without restrictions, see SMS sandbox (https://docs.aws.amazon.com/sns/latest/dg/sns-sms-sandbox.html)
// in the Amazon SNS Developer Guide.
type SMSSandboxPhoneNumber struct {
// The destination phone number.
PhoneNumber *string
// The destination phone number's verification status.
Status SMSSandboxPhoneNumberVerificationStatus
noSmithyDocumentSerde
}
// A wrapper type for the attributes of an Amazon SNS subscription.
type Subscription struct {
// The subscription's endpoint (format depends on the protocol).
Endpoint *string
// The subscription's owner.
Owner *string
// The subscription's protocol.
Protocol *string
// The subscription's ARN.
SubscriptionArn *string
// The ARN of the subscription's topic.
TopicArn *string
noSmithyDocumentSerde
}
// The list of tags to be added to the specified topic.
type Tag struct {
// The required key portion of the tag.
//
// This member is required.
Key *string
// The optional value portion of the tag.
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
// A wrapper type for the topic's Amazon Resource Name (ARN). To retrieve a
// topic's attributes, use GetTopicAttributes .
type Topic struct {
// The topic's ARN.
TopicArn *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|