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 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type ApproximateCreationDateTimePrecision string
// Enum values for ApproximateCreationDateTimePrecision
const (
ApproximateCreationDateTimePrecisionMillisecond ApproximateCreationDateTimePrecision = "MILLISECOND"
ApproximateCreationDateTimePrecisionMicrosecond ApproximateCreationDateTimePrecision = "MICROSECOND"
)
// Values returns all known values for ApproximateCreationDateTimePrecision. Note
// that this can be expanded in the future, and so it is only as up to date as the
// client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ApproximateCreationDateTimePrecision) Values() []ApproximateCreationDateTimePrecision {
return []ApproximateCreationDateTimePrecision{
"MILLISECOND",
"MICROSECOND",
}
}
type AttributeAction string
// Enum values for AttributeAction
const (
AttributeActionAdd AttributeAction = "ADD"
AttributeActionPut AttributeAction = "PUT"
AttributeActionDelete AttributeAction = "DELETE"
)
// Values returns all known values for AttributeAction. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (AttributeAction) Values() []AttributeAction {
return []AttributeAction{
"ADD",
"PUT",
"DELETE",
}
}
type BackupStatus string
// Enum values for BackupStatus
const (
BackupStatusCreating BackupStatus = "CREATING"
BackupStatusDeleted BackupStatus = "DELETED"
BackupStatusAvailable BackupStatus = "AVAILABLE"
)
// Values returns all known values for BackupStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (BackupStatus) Values() []BackupStatus {
return []BackupStatus{
"CREATING",
"DELETED",
"AVAILABLE",
}
}
type BackupType string
// Enum values for BackupType
const (
BackupTypeUser BackupType = "USER"
BackupTypeSystem BackupType = "SYSTEM"
BackupTypeAwsBackup BackupType = "AWS_BACKUP"
)
// Values returns all known values for BackupType. Note that this can be expanded
// in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (BackupType) Values() []BackupType {
return []BackupType{
"USER",
"SYSTEM",
"AWS_BACKUP",
}
}
type BackupTypeFilter string
// Enum values for BackupTypeFilter
const (
BackupTypeFilterUser BackupTypeFilter = "USER"
BackupTypeFilterSystem BackupTypeFilter = "SYSTEM"
BackupTypeFilterAwsBackup BackupTypeFilter = "AWS_BACKUP"
BackupTypeFilterAll BackupTypeFilter = "ALL"
)
// Values returns all known values for BackupTypeFilter. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (BackupTypeFilter) Values() []BackupTypeFilter {
return []BackupTypeFilter{
"USER",
"SYSTEM",
"AWS_BACKUP",
"ALL",
}
}
type BatchStatementErrorCodeEnum string
// Enum values for BatchStatementErrorCodeEnum
const (
BatchStatementErrorCodeEnumConditionalCheckFailed BatchStatementErrorCodeEnum = "ConditionalCheckFailed"
BatchStatementErrorCodeEnumItemCollectionSizeLimitExceeded BatchStatementErrorCodeEnum = "ItemCollectionSizeLimitExceeded"
BatchStatementErrorCodeEnumRequestLimitExceeded BatchStatementErrorCodeEnum = "RequestLimitExceeded"
BatchStatementErrorCodeEnumValidationError BatchStatementErrorCodeEnum = "ValidationError"
BatchStatementErrorCodeEnumProvisionedThroughputExceeded BatchStatementErrorCodeEnum = "ProvisionedThroughputExceeded"
BatchStatementErrorCodeEnumTransactionConflict BatchStatementErrorCodeEnum = "TransactionConflict"
BatchStatementErrorCodeEnumThrottlingError BatchStatementErrorCodeEnum = "ThrottlingError"
BatchStatementErrorCodeEnumInternalServerError BatchStatementErrorCodeEnum = "InternalServerError"
BatchStatementErrorCodeEnumResourceNotFound BatchStatementErrorCodeEnum = "ResourceNotFound"
BatchStatementErrorCodeEnumAccessDenied BatchStatementErrorCodeEnum = "AccessDenied"
BatchStatementErrorCodeEnumDuplicateItem BatchStatementErrorCodeEnum = "DuplicateItem"
)
// Values returns all known values for BatchStatementErrorCodeEnum. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (BatchStatementErrorCodeEnum) Values() []BatchStatementErrorCodeEnum {
return []BatchStatementErrorCodeEnum{
"ConditionalCheckFailed",
"ItemCollectionSizeLimitExceeded",
"RequestLimitExceeded",
"ValidationError",
"ProvisionedThroughputExceeded",
"TransactionConflict",
"ThrottlingError",
"InternalServerError",
"ResourceNotFound",
"AccessDenied",
"DuplicateItem",
}
}
type BillingMode string
// Enum values for BillingMode
const (
BillingModeProvisioned BillingMode = "PROVISIONED"
BillingModePayPerRequest BillingMode = "PAY_PER_REQUEST"
)
// Values returns all known values for BillingMode. Note that this can be expanded
// in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (BillingMode) Values() []BillingMode {
return []BillingMode{
"PROVISIONED",
"PAY_PER_REQUEST",
}
}
type ComparisonOperator string
// Enum values for ComparisonOperator
const (
ComparisonOperatorEq ComparisonOperator = "EQ"
ComparisonOperatorNe ComparisonOperator = "NE"
ComparisonOperatorIn ComparisonOperator = "IN"
ComparisonOperatorLe ComparisonOperator = "LE"
ComparisonOperatorLt ComparisonOperator = "LT"
ComparisonOperatorGe ComparisonOperator = "GE"
ComparisonOperatorGt ComparisonOperator = "GT"
ComparisonOperatorBetween ComparisonOperator = "BETWEEN"
ComparisonOperatorNotNull ComparisonOperator = "NOT_NULL"
ComparisonOperatorNull ComparisonOperator = "NULL"
ComparisonOperatorContains ComparisonOperator = "CONTAINS"
ComparisonOperatorNotContains ComparisonOperator = "NOT_CONTAINS"
ComparisonOperatorBeginsWith ComparisonOperator = "BEGINS_WITH"
)
// Values returns all known values for ComparisonOperator. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ComparisonOperator) Values() []ComparisonOperator {
return []ComparisonOperator{
"EQ",
"NE",
"IN",
"LE",
"LT",
"GE",
"GT",
"BETWEEN",
"NOT_NULL",
"NULL",
"CONTAINS",
"NOT_CONTAINS",
"BEGINS_WITH",
}
}
type ConditionalOperator string
// Enum values for ConditionalOperator
const (
ConditionalOperatorAnd ConditionalOperator = "AND"
ConditionalOperatorOr ConditionalOperator = "OR"
)
// Values returns all known values for ConditionalOperator. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ConditionalOperator) Values() []ConditionalOperator {
return []ConditionalOperator{
"AND",
"OR",
}
}
type ContinuousBackupsStatus string
// Enum values for ContinuousBackupsStatus
const (
ContinuousBackupsStatusEnabled ContinuousBackupsStatus = "ENABLED"
ContinuousBackupsStatusDisabled ContinuousBackupsStatus = "DISABLED"
)
// Values returns all known values for ContinuousBackupsStatus. Note that this can
// be expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ContinuousBackupsStatus) Values() []ContinuousBackupsStatus {
return []ContinuousBackupsStatus{
"ENABLED",
"DISABLED",
}
}
type ContributorInsightsAction string
// Enum values for ContributorInsightsAction
const (
ContributorInsightsActionEnable ContributorInsightsAction = "ENABLE"
ContributorInsightsActionDisable ContributorInsightsAction = "DISABLE"
)
// Values returns all known values for ContributorInsightsAction. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ContributorInsightsAction) Values() []ContributorInsightsAction {
return []ContributorInsightsAction{
"ENABLE",
"DISABLE",
}
}
type ContributorInsightsStatus string
// Enum values for ContributorInsightsStatus
const (
ContributorInsightsStatusEnabling ContributorInsightsStatus = "ENABLING"
ContributorInsightsStatusEnabled ContributorInsightsStatus = "ENABLED"
ContributorInsightsStatusDisabling ContributorInsightsStatus = "DISABLING"
ContributorInsightsStatusDisabled ContributorInsightsStatus = "DISABLED"
ContributorInsightsStatusFailed ContributorInsightsStatus = "FAILED"
)
// Values returns all known values for ContributorInsightsStatus. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ContributorInsightsStatus) Values() []ContributorInsightsStatus {
return []ContributorInsightsStatus{
"ENABLING",
"ENABLED",
"DISABLING",
"DISABLED",
"FAILED",
}
}
type DestinationStatus string
// Enum values for DestinationStatus
const (
DestinationStatusEnabling DestinationStatus = "ENABLING"
DestinationStatusActive DestinationStatus = "ACTIVE"
DestinationStatusDisabling DestinationStatus = "DISABLING"
DestinationStatusDisabled DestinationStatus = "DISABLED"
DestinationStatusEnableFailed DestinationStatus = "ENABLE_FAILED"
DestinationStatusUpdating DestinationStatus = "UPDATING"
)
// Values returns all known values for DestinationStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (DestinationStatus) Values() []DestinationStatus {
return []DestinationStatus{
"ENABLING",
"ACTIVE",
"DISABLING",
"DISABLED",
"ENABLE_FAILED",
"UPDATING",
}
}
type ExportFormat string
// Enum values for ExportFormat
const (
ExportFormatDynamodbJson ExportFormat = "DYNAMODB_JSON"
ExportFormatIon ExportFormat = "ION"
)
// Values returns all known values for ExportFormat. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ExportFormat) Values() []ExportFormat {
return []ExportFormat{
"DYNAMODB_JSON",
"ION",
}
}
type ExportStatus string
// Enum values for ExportStatus
const (
ExportStatusInProgress ExportStatus = "IN_PROGRESS"
ExportStatusCompleted ExportStatus = "COMPLETED"
ExportStatusFailed ExportStatus = "FAILED"
)
// Values returns all known values for ExportStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ExportStatus) Values() []ExportStatus {
return []ExportStatus{
"IN_PROGRESS",
"COMPLETED",
"FAILED",
}
}
type ExportType string
// Enum values for ExportType
const (
ExportTypeFullExport ExportType = "FULL_EXPORT"
ExportTypeIncrementalExport ExportType = "INCREMENTAL_EXPORT"
)
// Values returns all known values for ExportType. Note that this can be expanded
// in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ExportType) Values() []ExportType {
return []ExportType{
"FULL_EXPORT",
"INCREMENTAL_EXPORT",
}
}
type ExportViewType string
// Enum values for ExportViewType
const (
ExportViewTypeNewImage ExportViewType = "NEW_IMAGE"
ExportViewTypeNewAndOldImages ExportViewType = "NEW_AND_OLD_IMAGES"
)
// Values returns all known values for ExportViewType. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ExportViewType) Values() []ExportViewType {
return []ExportViewType{
"NEW_IMAGE",
"NEW_AND_OLD_IMAGES",
}
}
type GlobalTableStatus string
// Enum values for GlobalTableStatus
const (
GlobalTableStatusCreating GlobalTableStatus = "CREATING"
GlobalTableStatusActive GlobalTableStatus = "ACTIVE"
GlobalTableStatusDeleting GlobalTableStatus = "DELETING"
GlobalTableStatusUpdating GlobalTableStatus = "UPDATING"
)
// Values returns all known values for GlobalTableStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (GlobalTableStatus) Values() []GlobalTableStatus {
return []GlobalTableStatus{
"CREATING",
"ACTIVE",
"DELETING",
"UPDATING",
}
}
type ImportStatus string
// Enum values for ImportStatus
const (
ImportStatusInProgress ImportStatus = "IN_PROGRESS"
ImportStatusCompleted ImportStatus = "COMPLETED"
ImportStatusCancelling ImportStatus = "CANCELLING"
ImportStatusCancelled ImportStatus = "CANCELLED"
ImportStatusFailed ImportStatus = "FAILED"
)
// Values returns all known values for ImportStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ImportStatus) Values() []ImportStatus {
return []ImportStatus{
"IN_PROGRESS",
"COMPLETED",
"CANCELLING",
"CANCELLED",
"FAILED",
}
}
type IndexStatus string
// Enum values for IndexStatus
const (
IndexStatusCreating IndexStatus = "CREATING"
IndexStatusUpdating IndexStatus = "UPDATING"
IndexStatusDeleting IndexStatus = "DELETING"
IndexStatusActive IndexStatus = "ACTIVE"
)
// Values returns all known values for IndexStatus. Note that this can be expanded
// in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (IndexStatus) Values() []IndexStatus {
return []IndexStatus{
"CREATING",
"UPDATING",
"DELETING",
"ACTIVE",
}
}
type InputCompressionType string
// Enum values for InputCompressionType
const (
InputCompressionTypeGzip InputCompressionType = "GZIP"
InputCompressionTypeZstd InputCompressionType = "ZSTD"
InputCompressionTypeNone InputCompressionType = "NONE"
)
// Values returns all known values for InputCompressionType. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (InputCompressionType) Values() []InputCompressionType {
return []InputCompressionType{
"GZIP",
"ZSTD",
"NONE",
}
}
type InputFormat string
// Enum values for InputFormat
const (
InputFormatDynamodbJson InputFormat = "DYNAMODB_JSON"
InputFormatIon InputFormat = "ION"
InputFormatCsv InputFormat = "CSV"
)
// Values returns all known values for InputFormat. Note that this can be expanded
// in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (InputFormat) Values() []InputFormat {
return []InputFormat{
"DYNAMODB_JSON",
"ION",
"CSV",
}
}
type KeyType string
// Enum values for KeyType
const (
KeyTypeHash KeyType = "HASH"
KeyTypeRange KeyType = "RANGE"
)
// Values returns all known values for KeyType. Note that this can be expanded in
// the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (KeyType) Values() []KeyType {
return []KeyType{
"HASH",
"RANGE",
}
}
type PointInTimeRecoveryStatus string
// Enum values for PointInTimeRecoveryStatus
const (
PointInTimeRecoveryStatusEnabled PointInTimeRecoveryStatus = "ENABLED"
PointInTimeRecoveryStatusDisabled PointInTimeRecoveryStatus = "DISABLED"
)
// Values returns all known values for PointInTimeRecoveryStatus. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (PointInTimeRecoveryStatus) Values() []PointInTimeRecoveryStatus {
return []PointInTimeRecoveryStatus{
"ENABLED",
"DISABLED",
}
}
type ProjectionType string
// Enum values for ProjectionType
const (
ProjectionTypeAll ProjectionType = "ALL"
ProjectionTypeKeysOnly ProjectionType = "KEYS_ONLY"
ProjectionTypeInclude ProjectionType = "INCLUDE"
)
// Values returns all known values for ProjectionType. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ProjectionType) Values() []ProjectionType {
return []ProjectionType{
"ALL",
"KEYS_ONLY",
"INCLUDE",
}
}
type ReplicaStatus string
// Enum values for ReplicaStatus
const (
ReplicaStatusCreating ReplicaStatus = "CREATING"
ReplicaStatusCreationFailed ReplicaStatus = "CREATION_FAILED"
ReplicaStatusUpdating ReplicaStatus = "UPDATING"
ReplicaStatusDeleting ReplicaStatus = "DELETING"
ReplicaStatusActive ReplicaStatus = "ACTIVE"
ReplicaStatusRegionDisabled ReplicaStatus = "REGION_DISABLED"
ReplicaStatusInaccessibleEncryptionCredentials ReplicaStatus = "INACCESSIBLE_ENCRYPTION_CREDENTIALS"
)
// Values returns all known values for ReplicaStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ReplicaStatus) Values() []ReplicaStatus {
return []ReplicaStatus{
"CREATING",
"CREATION_FAILED",
"UPDATING",
"DELETING",
"ACTIVE",
"REGION_DISABLED",
"INACCESSIBLE_ENCRYPTION_CREDENTIALS",
}
}
type ReturnConsumedCapacity string
// Enum values for ReturnConsumedCapacity
const (
ReturnConsumedCapacityIndexes ReturnConsumedCapacity = "INDEXES"
ReturnConsumedCapacityTotal ReturnConsumedCapacity = "TOTAL"
ReturnConsumedCapacityNone ReturnConsumedCapacity = "NONE"
)
// Values returns all known values for ReturnConsumedCapacity. Note that this can
// be expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ReturnConsumedCapacity) Values() []ReturnConsumedCapacity {
return []ReturnConsumedCapacity{
"INDEXES",
"TOTAL",
"NONE",
}
}
type ReturnItemCollectionMetrics string
// Enum values for ReturnItemCollectionMetrics
const (
ReturnItemCollectionMetricsSize ReturnItemCollectionMetrics = "SIZE"
ReturnItemCollectionMetricsNone ReturnItemCollectionMetrics = "NONE"
)
// Values returns all known values for ReturnItemCollectionMetrics. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ReturnItemCollectionMetrics) Values() []ReturnItemCollectionMetrics {
return []ReturnItemCollectionMetrics{
"SIZE",
"NONE",
}
}
type ReturnValue string
// Enum values for ReturnValue
const (
ReturnValueNone ReturnValue = "NONE"
ReturnValueAllOld ReturnValue = "ALL_OLD"
ReturnValueUpdatedOld ReturnValue = "UPDATED_OLD"
ReturnValueAllNew ReturnValue = "ALL_NEW"
ReturnValueUpdatedNew ReturnValue = "UPDATED_NEW"
)
// Values returns all known values for ReturnValue. Note that this can be expanded
// in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ReturnValue) Values() []ReturnValue {
return []ReturnValue{
"NONE",
"ALL_OLD",
"UPDATED_OLD",
"ALL_NEW",
"UPDATED_NEW",
}
}
type ReturnValuesOnConditionCheckFailure string
// Enum values for ReturnValuesOnConditionCheckFailure
const (
ReturnValuesOnConditionCheckFailureAllOld ReturnValuesOnConditionCheckFailure = "ALL_OLD"
ReturnValuesOnConditionCheckFailureNone ReturnValuesOnConditionCheckFailure = "NONE"
)
// Values returns all known values for ReturnValuesOnConditionCheckFailure. Note
// that this can be expanded in the future, and so it is only as up to date as the
// client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ReturnValuesOnConditionCheckFailure) Values() []ReturnValuesOnConditionCheckFailure {
return []ReturnValuesOnConditionCheckFailure{
"ALL_OLD",
"NONE",
}
}
type S3SseAlgorithm string
// Enum values for S3SseAlgorithm
const (
S3SseAlgorithmAes256 S3SseAlgorithm = "AES256"
S3SseAlgorithmKms S3SseAlgorithm = "KMS"
)
// Values returns all known values for S3SseAlgorithm. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (S3SseAlgorithm) Values() []S3SseAlgorithm {
return []S3SseAlgorithm{
"AES256",
"KMS",
}
}
type ScalarAttributeType string
// Enum values for ScalarAttributeType
const (
ScalarAttributeTypeS ScalarAttributeType = "S"
ScalarAttributeTypeN ScalarAttributeType = "N"
ScalarAttributeTypeB ScalarAttributeType = "B"
)
// Values returns all known values for ScalarAttributeType. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ScalarAttributeType) Values() []ScalarAttributeType {
return []ScalarAttributeType{
"S",
"N",
"B",
}
}
type Select string
// Enum values for Select
const (
SelectAllAttributes Select = "ALL_ATTRIBUTES"
SelectAllProjectedAttributes Select = "ALL_PROJECTED_ATTRIBUTES"
SelectSpecificAttributes Select = "SPECIFIC_ATTRIBUTES"
SelectCount Select = "COUNT"
)
// Values returns all known values for Select. Note that this can be expanded in
// the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (Select) Values() []Select {
return []Select{
"ALL_ATTRIBUTES",
"ALL_PROJECTED_ATTRIBUTES",
"SPECIFIC_ATTRIBUTES",
"COUNT",
}
}
type SSEStatus string
// Enum values for SSEStatus
const (
SSEStatusEnabling SSEStatus = "ENABLING"
SSEStatusEnabled SSEStatus = "ENABLED"
SSEStatusDisabling SSEStatus = "DISABLING"
SSEStatusDisabled SSEStatus = "DISABLED"
SSEStatusUpdating SSEStatus = "UPDATING"
)
// Values returns all known values for SSEStatus. Note that this can be expanded
// in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (SSEStatus) Values() []SSEStatus {
return []SSEStatus{
"ENABLING",
"ENABLED",
"DISABLING",
"DISABLED",
"UPDATING",
}
}
type SSEType string
// Enum values for SSEType
const (
SSETypeAes256 SSEType = "AES256"
SSETypeKms SSEType = "KMS"
)
// Values returns all known values for SSEType. Note that this can be expanded in
// the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (SSEType) Values() []SSEType {
return []SSEType{
"AES256",
"KMS",
}
}
type StreamViewType string
// Enum values for StreamViewType
const (
StreamViewTypeNewImage StreamViewType = "NEW_IMAGE"
StreamViewTypeOldImage StreamViewType = "OLD_IMAGE"
StreamViewTypeNewAndOldImages StreamViewType = "NEW_AND_OLD_IMAGES"
StreamViewTypeKeysOnly StreamViewType = "KEYS_ONLY"
)
// Values returns all known values for StreamViewType. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (StreamViewType) Values() []StreamViewType {
return []StreamViewType{
"NEW_IMAGE",
"OLD_IMAGE",
"NEW_AND_OLD_IMAGES",
"KEYS_ONLY",
}
}
type TableClass string
// Enum values for TableClass
const (
TableClassStandard TableClass = "STANDARD"
TableClassStandardInfrequentAccess TableClass = "STANDARD_INFREQUENT_ACCESS"
)
// Values returns all known values for TableClass. Note that this can be expanded
// in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (TableClass) Values() []TableClass {
return []TableClass{
"STANDARD",
"STANDARD_INFREQUENT_ACCESS",
}
}
type TableStatus string
// Enum values for TableStatus
const (
TableStatusCreating TableStatus = "CREATING"
TableStatusUpdating TableStatus = "UPDATING"
TableStatusDeleting TableStatus = "DELETING"
TableStatusActive TableStatus = "ACTIVE"
TableStatusInaccessibleEncryptionCredentials TableStatus = "INACCESSIBLE_ENCRYPTION_CREDENTIALS"
TableStatusArchiving TableStatus = "ARCHIVING"
TableStatusArchived TableStatus = "ARCHIVED"
)
// Values returns all known values for TableStatus. Note that this can be expanded
// in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (TableStatus) Values() []TableStatus {
return []TableStatus{
"CREATING",
"UPDATING",
"DELETING",
"ACTIVE",
"INACCESSIBLE_ENCRYPTION_CREDENTIALS",
"ARCHIVING",
"ARCHIVED",
}
}
type TimeToLiveStatus string
// Enum values for TimeToLiveStatus
const (
TimeToLiveStatusEnabling TimeToLiveStatus = "ENABLING"
TimeToLiveStatusDisabling TimeToLiveStatus = "DISABLING"
TimeToLiveStatusEnabled TimeToLiveStatus = "ENABLED"
TimeToLiveStatusDisabled TimeToLiveStatus = "DISABLED"
)
// Values returns all known values for TimeToLiveStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (TimeToLiveStatus) Values() []TimeToLiveStatus {
return []TimeToLiveStatus{
"ENABLING",
"DISABLING",
"ENABLED",
"DISABLED",
}
}
|