forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.go
98 lines (81 loc) · 3.41 KB
/
errors.go
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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package databasemigrationservice
const (
// ErrCodeAccessDeniedFault for service response error code
// "AccessDeniedFault".
//
// AWS DMS was denied access to the endpoint.
ErrCodeAccessDeniedFault = "AccessDeniedFault"
// ErrCodeInsufficientResourceCapacityFault for service response error code
// "InsufficientResourceCapacityFault".
//
// There are not enough resources allocated to the database migration.
ErrCodeInsufficientResourceCapacityFault = "InsufficientResourceCapacityFault"
// ErrCodeInvalidCertificateFault for service response error code
// "InvalidCertificateFault".
//
// The certificate was not valid.
ErrCodeInvalidCertificateFault = "InvalidCertificateFault"
// ErrCodeInvalidResourceStateFault for service response error code
// "InvalidResourceStateFault".
//
// The resource is in a state that prevents it from being used for database
// migration.
ErrCodeInvalidResourceStateFault = "InvalidResourceStateFault"
// ErrCodeInvalidSubnet for service response error code
// "InvalidSubnet".
//
// The subnet provided is invalid.
ErrCodeInvalidSubnet = "InvalidSubnet"
// ErrCodeKMSKeyNotAccessibleFault for service response error code
// "KMSKeyNotAccessibleFault".
//
// AWS DMS cannot access the KMS key.
ErrCodeKMSKeyNotAccessibleFault = "KMSKeyNotAccessibleFault"
// ErrCodeReplicationSubnetGroupDoesNotCoverEnoughAZs for service response error code
// "ReplicationSubnetGroupDoesNotCoverEnoughAZs".
//
// The replication subnet group does not cover enough Availability Zones (AZs).
// Edit the replication subnet group and add more AZs.
ErrCodeReplicationSubnetGroupDoesNotCoverEnoughAZs = "ReplicationSubnetGroupDoesNotCoverEnoughAZs"
// ErrCodeResourceAlreadyExistsFault for service response error code
// "ResourceAlreadyExistsFault".
//
// The resource you are attempting to create already exists.
ErrCodeResourceAlreadyExistsFault = "ResourceAlreadyExistsFault"
// ErrCodeResourceNotFoundFault for service response error code
// "ResourceNotFoundFault".
//
// The resource could not be found.
ErrCodeResourceNotFoundFault = "ResourceNotFoundFault"
// ErrCodeResourceQuotaExceededFault for service response error code
// "ResourceQuotaExceededFault".
//
// The quota for this resource quota has been exceeded.
ErrCodeResourceQuotaExceededFault = "ResourceQuotaExceededFault"
// ErrCodeSNSInvalidTopicFault for service response error code
// "SNSInvalidTopicFault".
//
// The SNS topic is invalid.
ErrCodeSNSInvalidTopicFault = "SNSInvalidTopicFault"
// ErrCodeSNSNoAuthorizationFault for service response error code
// "SNSNoAuthorizationFault".
//
// You are not authorized for the SNS subscription.
ErrCodeSNSNoAuthorizationFault = "SNSNoAuthorizationFault"
// ErrCodeStorageQuotaExceededFault for service response error code
// "StorageQuotaExceededFault".
//
// The storage quota has been exceeded.
ErrCodeStorageQuotaExceededFault = "StorageQuotaExceededFault"
// ErrCodeSubnetAlreadyInUse for service response error code
// "SubnetAlreadyInUse".
//
// The specified subnet is already in use.
ErrCodeSubnetAlreadyInUse = "SubnetAlreadyInUse"
// ErrCodeUpgradeDependencyFailureFault for service response error code
// "UpgradeDependencyFailureFault".
//
// An upgrade dependency is preventing the database migration.
ErrCodeUpgradeDependencyFailureFault = "UpgradeDependencyFailureFault"
)