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 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Represents the data for an attribute. Each attribute value is described as a
// name-value pair. The name is the data type, and the value is the data itself.
// For more information, see Data Types (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.NamingRulesDataTypes.html#HowItWorks.DataTypes)
// in the Amazon DynamoDB Developer Guide.
//
// The following types satisfy this interface:
//
// AttributeValueMemberB
// AttributeValueMemberBOOL
// AttributeValueMemberBS
// AttributeValueMemberL
// AttributeValueMemberM
// AttributeValueMemberN
// AttributeValueMemberNS
// AttributeValueMemberNULL
// AttributeValueMemberS
// AttributeValueMemberSS
type AttributeValue interface {
isAttributeValue()
}
// An attribute of type Binary. For example: "B":
// "dGhpcyB0ZXh0IGlzIGJhc2U2NC1lbmNvZGVk"
type AttributeValueMemberB struct {
Value []byte
noSmithyDocumentSerde
}
func (*AttributeValueMemberB) isAttributeValue() {}
// An attribute of type Boolean. For example: "BOOL": true
type AttributeValueMemberBOOL struct {
Value bool
noSmithyDocumentSerde
}
func (*AttributeValueMemberBOOL) isAttributeValue() {}
// An attribute of type Binary Set. For example: "BS": ["U3Vubnk=", "UmFpbnk=",
// "U25vd3k="]
type AttributeValueMemberBS struct {
Value [][]byte
noSmithyDocumentSerde
}
func (*AttributeValueMemberBS) isAttributeValue() {}
// An attribute of type List. For example: "L": [ {"S": "Cookies"} , {"S":
// "Coffee"}, {"N": "3.14159"}]
type AttributeValueMemberL struct {
Value []AttributeValue
noSmithyDocumentSerde
}
func (*AttributeValueMemberL) isAttributeValue() {}
// An attribute of type Map. For example: "M": {"Name": {"S": "Joe"}, "Age": {"N":
// "35"}}
type AttributeValueMemberM struct {
Value map[string]AttributeValue
noSmithyDocumentSerde
}
func (*AttributeValueMemberM) isAttributeValue() {}
// An attribute of type Number. For example: "N": "123.45" Numbers are sent across
// the network to DynamoDB as strings, to maximize compatibility across languages
// and libraries. However, DynamoDB treats them as number type attributes for
// mathematical operations.
type AttributeValueMemberN struct {
Value string
noSmithyDocumentSerde
}
func (*AttributeValueMemberN) isAttributeValue() {}
// An attribute of type Number Set. For example: "NS": ["42.2", "-19", "7.5",
// "3.14"] Numbers are sent across the network to DynamoDB as strings, to maximize
// compatibility across languages and libraries. However, DynamoDB treats them as
// number type attributes for mathematical operations.
type AttributeValueMemberNS struct {
Value []string
noSmithyDocumentSerde
}
func (*AttributeValueMemberNS) isAttributeValue() {}
// An attribute of type Null. For example: "NULL": true
type AttributeValueMemberNULL struct {
Value bool
noSmithyDocumentSerde
}
func (*AttributeValueMemberNULL) isAttributeValue() {}
// An attribute of type String. For example: "S": "Hello"
type AttributeValueMemberS struct {
Value string
noSmithyDocumentSerde
}
func (*AttributeValueMemberS) isAttributeValue() {}
// An attribute of type String Set. For example: "SS": ["Giraffe", "Hippo"
// ,"Zebra"]
type AttributeValueMemberSS struct {
Value []string
noSmithyDocumentSerde
}
func (*AttributeValueMemberSS) isAttributeValue() {}
// Contains details about the type of identity that made the request.
type Identity struct {
// A unique identifier for the entity that made the call. For Time To Live, the
// principalId is "dynamodb.amazonaws.com".
PrincipalId *string
// The type of the identity. For Time To Live, the type is "Service".
Type *string
noSmithyDocumentSerde
}
// Represents a single element of a key schema. A key schema specifies the
// attributes that make up the primary key of a table, or the key attributes of an
// index. A KeySchemaElement represents exactly one attribute of the primary key.
// For example, a simple primary key would be represented by one KeySchemaElement
// (for the partition key). A composite primary key would require one
// KeySchemaElement for the partition key, and another KeySchemaElement for the
// sort key. A KeySchemaElement must be a scalar, top-level attribute (not a
// nested attribute). The data type must be one of String, Number, or Binary. The
// attribute cannot be nested within a List or a Map.
type KeySchemaElement struct {
// The name of a key attribute.
//
// This member is required.
AttributeName *string
// The role that this key attribute will assume:
// - HASH - partition key
// - RANGE - sort key
// The partition key of an item is also known as its hash attribute. The term
// "hash attribute" derives from DynamoDB's usage of an internal hash function to
// evenly distribute data items across partitions, based on their partition key
// values. The sort key of an item is also known as its range attribute. The term
// "range attribute" derives from the way DynamoDB stores items with the same
// partition key physically close together, in sorted order by the sort key value.
//
// This member is required.
KeyType KeyType
noSmithyDocumentSerde
}
// A description of a unique event within a stream.
type Record struct {
// The region in which the GetRecords request was received.
AwsRegion *string
// The main body of the stream record, containing all of the DynamoDB-specific
// fields.
Dynamodb *StreamRecord
// A globally unique identifier for the event that was recorded in this stream
// record.
EventID *string
// The type of data modification that was performed on the DynamoDB table:
// - INSERT - a new item was added to the table.
// - MODIFY - one or more of an existing item's attributes were modified.
// - REMOVE - the item was deleted from the table
EventName OperationType
// The Amazon Web Services service from which the stream record originated. For
// DynamoDB Streams, this is aws:dynamodb .
EventSource *string
// The version number of the stream record format. This number is updated whenever
// the structure of Record is modified. Client applications must not assume that
// eventVersion will remain at a particular value, as this number is subject to
// change at any time. In general, eventVersion will only increase as the
// low-level DynamoDB Streams API evolves.
EventVersion *string
// Items that are deleted by the Time to Live process after expiration have the
// following fields:
// - Records[].userIdentity.type "Service"
// - Records[].userIdentity.principalId "dynamodb.amazonaws.com"
UserIdentity *Identity
noSmithyDocumentSerde
}
// The beginning and ending sequence numbers for the stream records contained
// within a shard.
type SequenceNumberRange struct {
// The last sequence number for the stream records contained within a shard.
// String contains numeric characters only.
EndingSequenceNumber *string
// The first sequence number for the stream records contained within a shard.
// String contains numeric characters only.
StartingSequenceNumber *string
noSmithyDocumentSerde
}
// A uniquely identified group of stream records within a stream.
type Shard struct {
// The shard ID of the current shard's parent.
ParentShardId *string
// The range of possible sequence numbers for the shard.
SequenceNumberRange *SequenceNumberRange
// The system-generated identifier for this shard.
ShardId *string
noSmithyDocumentSerde
}
// Represents all of the data describing a particular stream.
type Stream struct {
// The Amazon Resource Name (ARN) for the stream.
StreamArn *string
// A timestamp, in ISO 8601 format, for this stream. Note that LatestStreamLabel
// is not a unique identifier for the stream, because it is possible that a stream
// from another table might have the same timestamp. However, the combination of
// the following three elements is guaranteed to be unique:
// - the Amazon Web Services customer ID.
// - the table name
// - the StreamLabel
StreamLabel *string
// The DynamoDB table with which the stream is associated.
TableName *string
noSmithyDocumentSerde
}
// Represents all of the data describing a particular stream.
type StreamDescription struct {
// The date and time when the request to create this stream was issued.
CreationRequestDateTime *time.Time
// The key attribute(s) of the stream's DynamoDB table.
KeySchema []KeySchemaElement
// The shard ID of the item where the operation stopped, inclusive of the previous
// result set. Use this value to start a new operation, excluding this value in the
// new request. If LastEvaluatedShardId is empty, then the "last page" of results
// has been processed and there is currently no more data to be retrieved. If
// LastEvaluatedShardId is not empty, it does not necessarily mean that there is
// more data in the result set. The only way to know when you have reached the end
// of the result set is when LastEvaluatedShardId is empty.
LastEvaluatedShardId *string
// The shards that comprise the stream.
Shards []Shard
// The Amazon Resource Name (ARN) for the stream.
StreamArn *string
// A timestamp, in ISO 8601 format, for this stream. Note that LatestStreamLabel
// is not a unique identifier for the stream, because it is possible that a stream
// from another table might have the same timestamp. However, the combination of
// the following three elements is guaranteed to be unique:
// - the Amazon Web Services customer ID.
// - the table name
// - the StreamLabel
StreamLabel *string
// Indicates the current status of the stream:
// - ENABLING - Streams is currently being enabled on the DynamoDB table.
// - ENABLED - the stream is enabled.
// - DISABLING - Streams is currently being disabled on the DynamoDB table.
// - DISABLED - the stream is disabled.
StreamStatus StreamStatus
// Indicates the format of the records within this stream:
// - KEYS_ONLY - only the key attributes of items that were modified in the
// DynamoDB table.
// - NEW_IMAGE - entire items from the table, as they appeared after they were
// modified.
// - OLD_IMAGE - entire items from the table, as they appeared before they were
// modified.
// - NEW_AND_OLD_IMAGES - both the new and the old images of the items from the
// table.
StreamViewType StreamViewType
// The DynamoDB table with which the stream is associated.
TableName *string
noSmithyDocumentSerde
}
// A description of a single data modification that was performed on an item in a
// DynamoDB table.
type StreamRecord struct {
// The approximate date and time when the stream record was created, in UNIX epoch
// time (http://www.epochconverter.com/) format and rounded down to the closest
// second.
ApproximateCreationDateTime *time.Time
// The primary key attribute(s) for the DynamoDB item that was modified.
Keys map[string]AttributeValue
// The item in the DynamoDB table as it appeared after it was modified.
NewImage map[string]AttributeValue
// The item in the DynamoDB table as it appeared before it was modified.
OldImage map[string]AttributeValue
// The sequence number of the stream record.
SequenceNumber *string
// The size of the stream record, in bytes.
SizeBytes *int64
// The type of data from the modified DynamoDB item that was captured in this
// stream record:
// - KEYS_ONLY - only the key attributes of the modified item.
// - NEW_IMAGE - the entire item, as it appeared after it was modified.
// - OLD_IMAGE - the entire item, as it appeared before it was modified.
// - NEW_AND_OLD_IMAGES - both the new and the old item images of the item.
StreamViewType StreamViewType
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
// UnknownUnionMember is returned when a union member is returned over the wire,
// but has an unknown tag.
type UnknownUnionMember struct {
Tag string
Value []byte
noSmithyDocumentSerde
}
func (*UnknownUnionMember) isAttributeValue() {}
|