github.com/aavshr/aws-sdk-go@v1.41.3/service/docdb/errors.go (about)

     1  // Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
     2  
     3  package docdb
     4  
     5  const (
     6  
     7  	// ErrCodeAuthorizationNotFoundFault for service response error code
     8  	// "AuthorizationNotFound".
     9  	//
    10  	// The specified CIDR IP or Amazon EC2 security group isn't authorized for the
    11  	// specified security group.
    12  	//
    13  	// Amazon DocumentDB also might not be authorized to perform necessary actions
    14  	// on your behalf using IAM.
    15  	ErrCodeAuthorizationNotFoundFault = "AuthorizationNotFound"
    16  
    17  	// ErrCodeCertificateNotFoundFault for service response error code
    18  	// "CertificateNotFound".
    19  	//
    20  	// CertificateIdentifier doesn't refer to an existing certificate.
    21  	ErrCodeCertificateNotFoundFault = "CertificateNotFound"
    22  
    23  	// ErrCodeDBClusterAlreadyExistsFault for service response error code
    24  	// "DBClusterAlreadyExistsFault".
    25  	//
    26  	// You already have a cluster with the given identifier.
    27  	ErrCodeDBClusterAlreadyExistsFault = "DBClusterAlreadyExistsFault"
    28  
    29  	// ErrCodeDBClusterNotFoundFault for service response error code
    30  	// "DBClusterNotFoundFault".
    31  	//
    32  	// DBClusterIdentifier doesn't refer to an existing cluster.
    33  	ErrCodeDBClusterNotFoundFault = "DBClusterNotFoundFault"
    34  
    35  	// ErrCodeDBClusterParameterGroupNotFoundFault for service response error code
    36  	// "DBClusterParameterGroupNotFound".
    37  	//
    38  	// DBClusterParameterGroupName doesn't refer to an existing cluster parameter
    39  	// group.
    40  	ErrCodeDBClusterParameterGroupNotFoundFault = "DBClusterParameterGroupNotFound"
    41  
    42  	// ErrCodeDBClusterQuotaExceededFault for service response error code
    43  	// "DBClusterQuotaExceededFault".
    44  	//
    45  	// The cluster can't be created because you have reached the maximum allowed
    46  	// quota of clusters.
    47  	ErrCodeDBClusterQuotaExceededFault = "DBClusterQuotaExceededFault"
    48  
    49  	// ErrCodeDBClusterSnapshotAlreadyExistsFault for service response error code
    50  	// "DBClusterSnapshotAlreadyExistsFault".
    51  	//
    52  	// You already have a cluster snapshot with the given identifier.
    53  	ErrCodeDBClusterSnapshotAlreadyExistsFault = "DBClusterSnapshotAlreadyExistsFault"
    54  
    55  	// ErrCodeDBClusterSnapshotNotFoundFault for service response error code
    56  	// "DBClusterSnapshotNotFoundFault".
    57  	//
    58  	// DBClusterSnapshotIdentifier doesn't refer to an existing cluster snapshot.
    59  	ErrCodeDBClusterSnapshotNotFoundFault = "DBClusterSnapshotNotFoundFault"
    60  
    61  	// ErrCodeDBInstanceAlreadyExistsFault for service response error code
    62  	// "DBInstanceAlreadyExists".
    63  	//
    64  	// You already have a instance with the given identifier.
    65  	ErrCodeDBInstanceAlreadyExistsFault = "DBInstanceAlreadyExists"
    66  
    67  	// ErrCodeDBInstanceNotFoundFault for service response error code
    68  	// "DBInstanceNotFound".
    69  	//
    70  	// DBInstanceIdentifier doesn't refer to an existing instance.
    71  	ErrCodeDBInstanceNotFoundFault = "DBInstanceNotFound"
    72  
    73  	// ErrCodeDBParameterGroupAlreadyExistsFault for service response error code
    74  	// "DBParameterGroupAlreadyExists".
    75  	//
    76  	// A parameter group with the same name already exists.
    77  	ErrCodeDBParameterGroupAlreadyExistsFault = "DBParameterGroupAlreadyExists"
    78  
    79  	// ErrCodeDBParameterGroupNotFoundFault for service response error code
    80  	// "DBParameterGroupNotFound".
    81  	//
    82  	// DBParameterGroupName doesn't refer to an existing parameter group.
    83  	ErrCodeDBParameterGroupNotFoundFault = "DBParameterGroupNotFound"
    84  
    85  	// ErrCodeDBParameterGroupQuotaExceededFault for service response error code
    86  	// "DBParameterGroupQuotaExceeded".
    87  	//
    88  	// This request would cause you to exceed the allowed number of parameter groups.
    89  	ErrCodeDBParameterGroupQuotaExceededFault = "DBParameterGroupQuotaExceeded"
    90  
    91  	// ErrCodeDBSecurityGroupNotFoundFault for service response error code
    92  	// "DBSecurityGroupNotFound".
    93  	//
    94  	// DBSecurityGroupName doesn't refer to an existing security group.
    95  	ErrCodeDBSecurityGroupNotFoundFault = "DBSecurityGroupNotFound"
    96  
    97  	// ErrCodeDBSnapshotAlreadyExistsFault for service response error code
    98  	// "DBSnapshotAlreadyExists".
    99  	//
   100  	// DBSnapshotIdentifier is already being used by an existing snapshot.
   101  	ErrCodeDBSnapshotAlreadyExistsFault = "DBSnapshotAlreadyExists"
   102  
   103  	// ErrCodeDBSnapshotNotFoundFault for service response error code
   104  	// "DBSnapshotNotFound".
   105  	//
   106  	// DBSnapshotIdentifier doesn't refer to an existing snapshot.
   107  	ErrCodeDBSnapshotNotFoundFault = "DBSnapshotNotFound"
   108  
   109  	// ErrCodeDBSubnetGroupAlreadyExistsFault for service response error code
   110  	// "DBSubnetGroupAlreadyExists".
   111  	//
   112  	// DBSubnetGroupName is already being used by an existing subnet group.
   113  	ErrCodeDBSubnetGroupAlreadyExistsFault = "DBSubnetGroupAlreadyExists"
   114  
   115  	// ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs for service response error code
   116  	// "DBSubnetGroupDoesNotCoverEnoughAZs".
   117  	//
   118  	// Subnets in the subnet group should cover at least two Availability Zones
   119  	// unless there is only one Availability Zone.
   120  	ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs = "DBSubnetGroupDoesNotCoverEnoughAZs"
   121  
   122  	// ErrCodeDBSubnetGroupNotFoundFault for service response error code
   123  	// "DBSubnetGroupNotFoundFault".
   124  	//
   125  	// DBSubnetGroupName doesn't refer to an existing subnet group.
   126  	ErrCodeDBSubnetGroupNotFoundFault = "DBSubnetGroupNotFoundFault"
   127  
   128  	// ErrCodeDBSubnetGroupQuotaExceededFault for service response error code
   129  	// "DBSubnetGroupQuotaExceeded".
   130  	//
   131  	// The request would cause you to exceed the allowed number of subnet groups.
   132  	ErrCodeDBSubnetGroupQuotaExceededFault = "DBSubnetGroupQuotaExceeded"
   133  
   134  	// ErrCodeDBSubnetQuotaExceededFault for service response error code
   135  	// "DBSubnetQuotaExceededFault".
   136  	//
   137  	// The request would cause you to exceed the allowed number of subnets in a
   138  	// subnet group.
   139  	ErrCodeDBSubnetQuotaExceededFault = "DBSubnetQuotaExceededFault"
   140  
   141  	// ErrCodeDBUpgradeDependencyFailureFault for service response error code
   142  	// "DBUpgradeDependencyFailure".
   143  	//
   144  	// The upgrade failed because a resource that the depends on can't be modified.
   145  	ErrCodeDBUpgradeDependencyFailureFault = "DBUpgradeDependencyFailure"
   146  
   147  	// ErrCodeEventSubscriptionQuotaExceededFault for service response error code
   148  	// "EventSubscriptionQuotaExceeded".
   149  	//
   150  	// You have reached the maximum number of event subscriptions.
   151  	ErrCodeEventSubscriptionQuotaExceededFault = "EventSubscriptionQuotaExceeded"
   152  
   153  	// ErrCodeGlobalClusterAlreadyExistsFault for service response error code
   154  	// "GlobalClusterAlreadyExistsFault".
   155  	//
   156  	// The GlobalClusterIdentifier already exists. Choose a new global cluster identifier
   157  	// (unique name) to create a new global cluster.
   158  	ErrCodeGlobalClusterAlreadyExistsFault = "GlobalClusterAlreadyExistsFault"
   159  
   160  	// ErrCodeGlobalClusterNotFoundFault for service response error code
   161  	// "GlobalClusterNotFoundFault".
   162  	//
   163  	// The GlobalClusterIdentifier doesn't refer to an existing global cluster.
   164  	ErrCodeGlobalClusterNotFoundFault = "GlobalClusterNotFoundFault"
   165  
   166  	// ErrCodeGlobalClusterQuotaExceededFault for service response error code
   167  	// "GlobalClusterQuotaExceededFault".
   168  	//
   169  	// The number of global clusters for this account is already at the maximum
   170  	// allowed.
   171  	ErrCodeGlobalClusterQuotaExceededFault = "GlobalClusterQuotaExceededFault"
   172  
   173  	// ErrCodeInstanceQuotaExceededFault for service response error code
   174  	// "InstanceQuotaExceeded".
   175  	//
   176  	// The request would cause you to exceed the allowed number of instances.
   177  	ErrCodeInstanceQuotaExceededFault = "InstanceQuotaExceeded"
   178  
   179  	// ErrCodeInsufficientDBClusterCapacityFault for service response error code
   180  	// "InsufficientDBClusterCapacityFault".
   181  	//
   182  	// The cluster doesn't have enough capacity for the current operation.
   183  	ErrCodeInsufficientDBClusterCapacityFault = "InsufficientDBClusterCapacityFault"
   184  
   185  	// ErrCodeInsufficientDBInstanceCapacityFault for service response error code
   186  	// "InsufficientDBInstanceCapacity".
   187  	//
   188  	// The specified instance class isn't available in the specified Availability
   189  	// Zone.
   190  	ErrCodeInsufficientDBInstanceCapacityFault = "InsufficientDBInstanceCapacity"
   191  
   192  	// ErrCodeInsufficientStorageClusterCapacityFault for service response error code
   193  	// "InsufficientStorageClusterCapacity".
   194  	//
   195  	// There is not enough storage available for the current action. You might be
   196  	// able to resolve this error by updating your subnet group to use different
   197  	// Availability Zones that have more storage available.
   198  	ErrCodeInsufficientStorageClusterCapacityFault = "InsufficientStorageClusterCapacity"
   199  
   200  	// ErrCodeInvalidDBClusterSnapshotStateFault for service response error code
   201  	// "InvalidDBClusterSnapshotStateFault".
   202  	//
   203  	// The provided value isn't a valid cluster snapshot state.
   204  	ErrCodeInvalidDBClusterSnapshotStateFault = "InvalidDBClusterSnapshotStateFault"
   205  
   206  	// ErrCodeInvalidDBClusterStateFault for service response error code
   207  	// "InvalidDBClusterStateFault".
   208  	//
   209  	// The cluster isn't in a valid state.
   210  	ErrCodeInvalidDBClusterStateFault = "InvalidDBClusterStateFault"
   211  
   212  	// ErrCodeInvalidDBInstanceStateFault for service response error code
   213  	// "InvalidDBInstanceState".
   214  	//
   215  	// The specified instance isn't in the available state.
   216  	ErrCodeInvalidDBInstanceStateFault = "InvalidDBInstanceState"
   217  
   218  	// ErrCodeInvalidDBParameterGroupStateFault for service response error code
   219  	// "InvalidDBParameterGroupState".
   220  	//
   221  	// The parameter group is in use, or it is in a state that is not valid. If
   222  	// you are trying to delete the parameter group, you can't delete it when the
   223  	// parameter group is in this state.
   224  	ErrCodeInvalidDBParameterGroupStateFault = "InvalidDBParameterGroupState"
   225  
   226  	// ErrCodeInvalidDBSecurityGroupStateFault for service response error code
   227  	// "InvalidDBSecurityGroupState".
   228  	//
   229  	// The state of the security group doesn't allow deletion.
   230  	ErrCodeInvalidDBSecurityGroupStateFault = "InvalidDBSecurityGroupState"
   231  
   232  	// ErrCodeInvalidDBSnapshotStateFault for service response error code
   233  	// "InvalidDBSnapshotState".
   234  	//
   235  	// The state of the snapshot doesn't allow deletion.
   236  	ErrCodeInvalidDBSnapshotStateFault = "InvalidDBSnapshotState"
   237  
   238  	// ErrCodeInvalidDBSubnetGroupStateFault for service response error code
   239  	// "InvalidDBSubnetGroupStateFault".
   240  	//
   241  	// The subnet group can't be deleted because it's in use.
   242  	ErrCodeInvalidDBSubnetGroupStateFault = "InvalidDBSubnetGroupStateFault"
   243  
   244  	// ErrCodeInvalidDBSubnetStateFault for service response error code
   245  	// "InvalidDBSubnetStateFault".
   246  	//
   247  	// The subnet isn't in the available state.
   248  	ErrCodeInvalidDBSubnetStateFault = "InvalidDBSubnetStateFault"
   249  
   250  	// ErrCodeInvalidEventSubscriptionStateFault for service response error code
   251  	// "InvalidEventSubscriptionState".
   252  	//
   253  	// Someone else might be modifying a subscription. Wait a few seconds, and try
   254  	// again.
   255  	ErrCodeInvalidEventSubscriptionStateFault = "InvalidEventSubscriptionState"
   256  
   257  	// ErrCodeInvalidGlobalClusterStateFault for service response error code
   258  	// "InvalidGlobalClusterStateFault".
   259  	//
   260  	// The requested operation can't be performed while the cluster is in this state.
   261  	ErrCodeInvalidGlobalClusterStateFault = "InvalidGlobalClusterStateFault"
   262  
   263  	// ErrCodeInvalidRestoreFault for service response error code
   264  	// "InvalidRestoreFault".
   265  	//
   266  	// You cannot restore from a virtual private cloud (VPC) backup to a non-VPC
   267  	// DB instance.
   268  	ErrCodeInvalidRestoreFault = "InvalidRestoreFault"
   269  
   270  	// ErrCodeInvalidSubnet for service response error code
   271  	// "InvalidSubnet".
   272  	//
   273  	// The requested subnet is not valid, or multiple subnets were requested that
   274  	// are not all in a common virtual private cloud (VPC).
   275  	ErrCodeInvalidSubnet = "InvalidSubnet"
   276  
   277  	// ErrCodeInvalidVPCNetworkStateFault for service response error code
   278  	// "InvalidVPCNetworkStateFault".
   279  	//
   280  	// The subnet group doesn't cover all Availability Zones after it is created
   281  	// because of changes that were made.
   282  	ErrCodeInvalidVPCNetworkStateFault = "InvalidVPCNetworkStateFault"
   283  
   284  	// ErrCodeKMSKeyNotAccessibleFault for service response error code
   285  	// "KMSKeyNotAccessibleFault".
   286  	//
   287  	// An error occurred when accessing an KMS key.
   288  	ErrCodeKMSKeyNotAccessibleFault = "KMSKeyNotAccessibleFault"
   289  
   290  	// ErrCodeResourceNotFoundFault for service response error code
   291  	// "ResourceNotFoundFault".
   292  	//
   293  	// The specified resource ID was not found.
   294  	ErrCodeResourceNotFoundFault = "ResourceNotFoundFault"
   295  
   296  	// ErrCodeSNSInvalidTopicFault for service response error code
   297  	// "SNSInvalidTopic".
   298  	//
   299  	// Amazon SNS has responded that there is a problem with the specified topic.
   300  	ErrCodeSNSInvalidTopicFault = "SNSInvalidTopic"
   301  
   302  	// ErrCodeSNSNoAuthorizationFault for service response error code
   303  	// "SNSNoAuthorization".
   304  	//
   305  	// You do not have permission to publish to the SNS topic Amazon Resource Name
   306  	// (ARN).
   307  	ErrCodeSNSNoAuthorizationFault = "SNSNoAuthorization"
   308  
   309  	// ErrCodeSNSTopicArnNotFoundFault for service response error code
   310  	// "SNSTopicArnNotFound".
   311  	//
   312  	// The SNS topic Amazon Resource Name (ARN) does not exist.
   313  	ErrCodeSNSTopicArnNotFoundFault = "SNSTopicArnNotFound"
   314  
   315  	// ErrCodeSharedSnapshotQuotaExceededFault for service response error code
   316  	// "SharedSnapshotQuotaExceeded".
   317  	//
   318  	// You have exceeded the maximum number of accounts that you can share a manual
   319  	// DB snapshot with.
   320  	ErrCodeSharedSnapshotQuotaExceededFault = "SharedSnapshotQuotaExceeded"
   321  
   322  	// ErrCodeSnapshotQuotaExceededFault for service response error code
   323  	// "SnapshotQuotaExceeded".
   324  	//
   325  	// The request would cause you to exceed the allowed number of snapshots.
   326  	ErrCodeSnapshotQuotaExceededFault = "SnapshotQuotaExceeded"
   327  
   328  	// ErrCodeSourceNotFoundFault for service response error code
   329  	// "SourceNotFound".
   330  	//
   331  	// The requested source could not be found.
   332  	ErrCodeSourceNotFoundFault = "SourceNotFound"
   333  
   334  	// ErrCodeStorageQuotaExceededFault for service response error code
   335  	// "StorageQuotaExceeded".
   336  	//
   337  	// The request would cause you to exceed the allowed amount of storage available
   338  	// across all instances.
   339  	ErrCodeStorageQuotaExceededFault = "StorageQuotaExceeded"
   340  
   341  	// ErrCodeStorageTypeNotSupportedFault for service response error code
   342  	// "StorageTypeNotSupported".
   343  	//
   344  	// Storage of the specified StorageType can't be associated with the DB instance.
   345  	ErrCodeStorageTypeNotSupportedFault = "StorageTypeNotSupported"
   346  
   347  	// ErrCodeSubnetAlreadyInUse for service response error code
   348  	// "SubnetAlreadyInUse".
   349  	//
   350  	// The subnet is already in use in the Availability Zone.
   351  	ErrCodeSubnetAlreadyInUse = "SubnetAlreadyInUse"
   352  
   353  	// ErrCodeSubscriptionAlreadyExistFault for service response error code
   354  	// "SubscriptionAlreadyExist".
   355  	//
   356  	// The provided subscription name already exists.
   357  	ErrCodeSubscriptionAlreadyExistFault = "SubscriptionAlreadyExist"
   358  
   359  	// ErrCodeSubscriptionCategoryNotFoundFault for service response error code
   360  	// "SubscriptionCategoryNotFound".
   361  	//
   362  	// The provided category does not exist.
   363  	ErrCodeSubscriptionCategoryNotFoundFault = "SubscriptionCategoryNotFound"
   364  
   365  	// ErrCodeSubscriptionNotFoundFault for service response error code
   366  	// "SubscriptionNotFound".
   367  	//
   368  	// The subscription name does not exist.
   369  	ErrCodeSubscriptionNotFoundFault = "SubscriptionNotFound"
   370  )