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

     1  // Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
     2  
     3  package route53
     4  
     5  const (
     6  
     7  	// ErrCodeConcurrentModification for service response error code
     8  	// "ConcurrentModification".
     9  	//
    10  	// Another user submitted a request to create, update, or delete the object
    11  	// at the same time that you did. Retry the request.
    12  	ErrCodeConcurrentModification = "ConcurrentModification"
    13  
    14  	// ErrCodeConflictingDomainExists for service response error code
    15  	// "ConflictingDomainExists".
    16  	//
    17  	// The cause of this error depends on the operation that you're performing:
    18  	//
    19  	//    * Create a public hosted zone: Two hosted zones that have the same name
    20  	//    or that have a parent/child relationship (example.com and test.example.com)
    21  	//    can't have any common name servers. You tried to create a hosted zone
    22  	//    that has the same name as an existing hosted zone or that's the parent
    23  	//    or child of an existing hosted zone, and you specified a delegation set
    24  	//    that shares one or more name servers with the existing hosted zone. For
    25  	//    more information, see CreateReusableDelegationSet (https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateReusableDelegationSet.html).
    26  	//
    27  	//    * Create a private hosted zone: A hosted zone with the specified name
    28  	//    already exists and is already associated with the Amazon VPC that you
    29  	//    specified.
    30  	//
    31  	//    * Associate VPCs with a private hosted zone: The VPC that you specified
    32  	//    is already associated with another hosted zone that has the same name.
    33  	ErrCodeConflictingDomainExists = "ConflictingDomainExists"
    34  
    35  	// ErrCodeConflictingTypes for service response error code
    36  	// "ConflictingTypes".
    37  	//
    38  	// You tried to update a traffic policy instance by using a traffic policy version
    39  	// that has a different DNS type than the current type for the instance. You
    40  	// specified the type in the JSON document in the CreateTrafficPolicy or CreateTrafficPolicyVersionrequest.
    41  	ErrCodeConflictingTypes = "ConflictingTypes"
    42  
    43  	// ErrCodeDNSSECNotFound for service response error code
    44  	// "DNSSECNotFound".
    45  	//
    46  	// The hosted zone doesn't have any DNSSEC resources.
    47  	ErrCodeDNSSECNotFound = "DNSSECNotFound"
    48  
    49  	// ErrCodeDelegationSetAlreadyCreated for service response error code
    50  	// "DelegationSetAlreadyCreated".
    51  	//
    52  	// A delegation set with the same owner and caller reference combination has
    53  	// already been created.
    54  	ErrCodeDelegationSetAlreadyCreated = "DelegationSetAlreadyCreated"
    55  
    56  	// ErrCodeDelegationSetAlreadyReusable for service response error code
    57  	// "DelegationSetAlreadyReusable".
    58  	//
    59  	// The specified delegation set has already been marked as reusable.
    60  	ErrCodeDelegationSetAlreadyReusable = "DelegationSetAlreadyReusable"
    61  
    62  	// ErrCodeDelegationSetInUse for service response error code
    63  	// "DelegationSetInUse".
    64  	//
    65  	// The specified delegation contains associated hosted zones which must be deleted
    66  	// before the reusable delegation set can be deleted.
    67  	ErrCodeDelegationSetInUse = "DelegationSetInUse"
    68  
    69  	// ErrCodeDelegationSetNotAvailable for service response error code
    70  	// "DelegationSetNotAvailable".
    71  	//
    72  	// You can create a hosted zone that has the same name as an existing hosted
    73  	// zone (example.com is common), but there is a limit to the number of hosted
    74  	// zones that have the same name. If you get this error, Amazon Route 53 has
    75  	// reached that limit. If you own the domain name and Route 53 generates this
    76  	// error, contact Customer Support.
    77  	ErrCodeDelegationSetNotAvailable = "DelegationSetNotAvailable"
    78  
    79  	// ErrCodeDelegationSetNotReusable for service response error code
    80  	// "DelegationSetNotReusable".
    81  	//
    82  	// A reusable delegation set with the specified ID does not exist.
    83  	ErrCodeDelegationSetNotReusable = "DelegationSetNotReusable"
    84  
    85  	// ErrCodeHealthCheckAlreadyExists for service response error code
    86  	// "HealthCheckAlreadyExists".
    87  	//
    88  	// The health check you're attempting to create already exists. Amazon Route
    89  	// 53 returns this error when you submit a request that has the following values:
    90  	//
    91  	//    * The same value for CallerReference as an existing health check, and
    92  	//    one or more values that differ from the existing health check that has
    93  	//    the same caller reference.
    94  	//
    95  	//    * The same value for CallerReference as a health check that you created
    96  	//    and later deleted, regardless of the other settings in the request.
    97  	ErrCodeHealthCheckAlreadyExists = "HealthCheckAlreadyExists"
    98  
    99  	// ErrCodeHealthCheckInUse for service response error code
   100  	// "HealthCheckInUse".
   101  	//
   102  	// This error code is not in use.
   103  	ErrCodeHealthCheckInUse = "HealthCheckInUse"
   104  
   105  	// ErrCodeHealthCheckVersionMismatch for service response error code
   106  	// "HealthCheckVersionMismatch".
   107  	//
   108  	// The value of HealthCheckVersion in the request doesn't match the value of
   109  	// HealthCheckVersion in the health check.
   110  	ErrCodeHealthCheckVersionMismatch = "HealthCheckVersionMismatch"
   111  
   112  	// ErrCodeHostedZoneAlreadyExists for service response error code
   113  	// "HostedZoneAlreadyExists".
   114  	//
   115  	// The hosted zone you're trying to create already exists. Amazon Route 53 returns
   116  	// this error when a hosted zone has already been created with the specified
   117  	// CallerReference.
   118  	ErrCodeHostedZoneAlreadyExists = "HostedZoneAlreadyExists"
   119  
   120  	// ErrCodeHostedZoneNotEmpty for service response error code
   121  	// "HostedZoneNotEmpty".
   122  	//
   123  	// The hosted zone contains resource records that are not SOA or NS records.
   124  	ErrCodeHostedZoneNotEmpty = "HostedZoneNotEmpty"
   125  
   126  	// ErrCodeHostedZoneNotFound for service response error code
   127  	// "HostedZoneNotFound".
   128  	//
   129  	// The specified HostedZone can't be found.
   130  	ErrCodeHostedZoneNotFound = "HostedZoneNotFound"
   131  
   132  	// ErrCodeHostedZoneNotPrivate for service response error code
   133  	// "HostedZoneNotPrivate".
   134  	//
   135  	// The specified hosted zone is a public hosted zone, not a private hosted zone.
   136  	ErrCodeHostedZoneNotPrivate = "HostedZoneNotPrivate"
   137  
   138  	// ErrCodeHostedZonePartiallyDelegated for service response error code
   139  	// "HostedZonePartiallyDelegated".
   140  	//
   141  	// The hosted zone nameservers don't match the parent nameservers. The hosted
   142  	// zone and parent must have the same nameservers.
   143  	ErrCodeHostedZonePartiallyDelegated = "HostedZonePartiallyDelegated"
   144  
   145  	// ErrCodeIncompatibleVersion for service response error code
   146  	// "IncompatibleVersion".
   147  	//
   148  	// The resource you're trying to access is unsupported on this Amazon Route
   149  	// 53 endpoint.
   150  	ErrCodeIncompatibleVersion = "IncompatibleVersion"
   151  
   152  	// ErrCodeInsufficientCloudWatchLogsResourcePolicy for service response error code
   153  	// "InsufficientCloudWatchLogsResourcePolicy".
   154  	//
   155  	// Amazon Route 53 doesn't have the permissions required to create log streams
   156  	// and send query logs to log streams. Possible causes include the following:
   157  	//
   158  	//    * There is no resource policy that specifies the log group ARN in the
   159  	//    value for Resource.
   160  	//
   161  	//    * The resource policy that includes the log group ARN in the value for
   162  	//    Resource doesn't have the necessary permissions.
   163  	//
   164  	//    * The resource policy hasn't finished propagating yet.
   165  	//
   166  	//    * The Key management service (KMS) key you specified doesn’t exist or
   167  	//    it can’t be used with the log group associated with query log. Update
   168  	//    or provide a resource policy to grant permissions for the KMS key.
   169  	ErrCodeInsufficientCloudWatchLogsResourcePolicy = "InsufficientCloudWatchLogsResourcePolicy"
   170  
   171  	// ErrCodeInvalidArgument for service response error code
   172  	// "InvalidArgument".
   173  	//
   174  	// Parameter name is not valid.
   175  	ErrCodeInvalidArgument = "InvalidArgument"
   176  
   177  	// ErrCodeInvalidChangeBatch for service response error code
   178  	// "InvalidChangeBatch".
   179  	//
   180  	// This exception contains a list of messages that might contain one or more
   181  	// error messages. Each error message indicates one error in the change batch.
   182  	ErrCodeInvalidChangeBatch = "InvalidChangeBatch"
   183  
   184  	// ErrCodeInvalidDomainName for service response error code
   185  	// "InvalidDomainName".
   186  	//
   187  	// The specified domain name is not valid.
   188  	ErrCodeInvalidDomainName = "InvalidDomainName"
   189  
   190  	// ErrCodeInvalidInput for service response error code
   191  	// "InvalidInput".
   192  	//
   193  	// The input is not valid.
   194  	ErrCodeInvalidInput = "InvalidInput"
   195  
   196  	// ErrCodeInvalidKMSArn for service response error code
   197  	// "InvalidKMSArn".
   198  	//
   199  	// The KeyManagementServiceArn that you specified isn't valid to use with DNSSEC
   200  	// signing.
   201  	ErrCodeInvalidKMSArn = "InvalidKMSArn"
   202  
   203  	// ErrCodeInvalidKeySigningKeyName for service response error code
   204  	// "InvalidKeySigningKeyName".
   205  	//
   206  	// The key-signing key (KSK) name that you specified isn't a valid name.
   207  	ErrCodeInvalidKeySigningKeyName = "InvalidKeySigningKeyName"
   208  
   209  	// ErrCodeInvalidKeySigningKeyStatus for service response error code
   210  	// "InvalidKeySigningKeyStatus".
   211  	//
   212  	// The key-signing key (KSK) status isn't valid or another KSK has the status
   213  	// INTERNAL_FAILURE.
   214  	ErrCodeInvalidKeySigningKeyStatus = "InvalidKeySigningKeyStatus"
   215  
   216  	// ErrCodeInvalidPaginationToken for service response error code
   217  	// "InvalidPaginationToken".
   218  	//
   219  	// The value that you specified to get the second or subsequent page of results
   220  	// is invalid.
   221  	ErrCodeInvalidPaginationToken = "InvalidPaginationToken"
   222  
   223  	// ErrCodeInvalidSigningStatus for service response error code
   224  	// "InvalidSigningStatus".
   225  	//
   226  	// Your hosted zone status isn't valid for this operation. In the hosted zone,
   227  	// change the status to enable DNSSEC or disable DNSSEC.
   228  	ErrCodeInvalidSigningStatus = "InvalidSigningStatus"
   229  
   230  	// ErrCodeInvalidTrafficPolicyDocument for service response error code
   231  	// "InvalidTrafficPolicyDocument".
   232  	//
   233  	// The format of the traffic policy document that you specified in the Document
   234  	// element is not valid.
   235  	ErrCodeInvalidTrafficPolicyDocument = "InvalidTrafficPolicyDocument"
   236  
   237  	// ErrCodeInvalidVPCId for service response error code
   238  	// "InvalidVPCId".
   239  	//
   240  	// The VPC ID that you specified either isn't a valid ID or the current account
   241  	// is not authorized to access this VPC.
   242  	ErrCodeInvalidVPCId = "InvalidVPCId"
   243  
   244  	// ErrCodeKeySigningKeyAlreadyExists for service response error code
   245  	// "KeySigningKeyAlreadyExists".
   246  	//
   247  	// You've already created a key-signing key (KSK) with this name or with the
   248  	// same customer managed customer master key (CMK) ARN.
   249  	ErrCodeKeySigningKeyAlreadyExists = "KeySigningKeyAlreadyExists"
   250  
   251  	// ErrCodeKeySigningKeyInParentDSRecord for service response error code
   252  	// "KeySigningKeyInParentDSRecord".
   253  	//
   254  	// The key-signing key (KSK) is specified in a parent DS record.
   255  	ErrCodeKeySigningKeyInParentDSRecord = "KeySigningKeyInParentDSRecord"
   256  
   257  	// ErrCodeKeySigningKeyInUse for service response error code
   258  	// "KeySigningKeyInUse".
   259  	//
   260  	// The key-signing key (KSK) that you specified can't be deactivated because
   261  	// it's the only KSK for a currently-enabled DNSSEC. Disable DNSSEC signing,
   262  	// or add or enable another KSK.
   263  	ErrCodeKeySigningKeyInUse = "KeySigningKeyInUse"
   264  
   265  	// ErrCodeKeySigningKeyWithActiveStatusNotFound for service response error code
   266  	// "KeySigningKeyWithActiveStatusNotFound".
   267  	//
   268  	// A key-signing key (KSK) with ACTIVE status wasn't found.
   269  	ErrCodeKeySigningKeyWithActiveStatusNotFound = "KeySigningKeyWithActiveStatusNotFound"
   270  
   271  	// ErrCodeLastVPCAssociation for service response error code
   272  	// "LastVPCAssociation".
   273  	//
   274  	// The VPC that you're trying to disassociate from the private hosted zone is
   275  	// the last VPC that is associated with the hosted zone. Amazon Route 53 doesn't
   276  	// support disassociating the last VPC from a hosted zone.
   277  	ErrCodeLastVPCAssociation = "LastVPCAssociation"
   278  
   279  	// ErrCodeLimitsExceeded for service response error code
   280  	// "LimitsExceeded".
   281  	//
   282  	// This operation can't be completed either because the current account has
   283  	// reached the limit on reusable delegation sets that it can create or because
   284  	// you've reached the limit on the number of Amazon VPCs that you can associate
   285  	// with a private hosted zone. To get the current limit on the number of reusable
   286  	// delegation sets, see GetAccountLimit (https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetAccountLimit.html).
   287  	// To get the current limit on the number of Amazon VPCs that you can associate
   288  	// with a private hosted zone, see GetHostedZoneLimit (https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetHostedZoneLimit.html).
   289  	// To request a higher limit, create a case (http://aws.amazon.com/route53-request)
   290  	// with the Amazon Web Services Support Center.
   291  	ErrCodeLimitsExceeded = "LimitsExceeded"
   292  
   293  	// ErrCodeNoSuchChange for service response error code
   294  	// "NoSuchChange".
   295  	//
   296  	// A change with the specified change ID does not exist.
   297  	ErrCodeNoSuchChange = "NoSuchChange"
   298  
   299  	// ErrCodeNoSuchCloudWatchLogsLogGroup for service response error code
   300  	// "NoSuchCloudWatchLogsLogGroup".
   301  	//
   302  	// There is no CloudWatch Logs log group with the specified ARN.
   303  	ErrCodeNoSuchCloudWatchLogsLogGroup = "NoSuchCloudWatchLogsLogGroup"
   304  
   305  	// ErrCodeNoSuchDelegationSet for service response error code
   306  	// "NoSuchDelegationSet".
   307  	//
   308  	// A reusable delegation set with the specified ID does not exist.
   309  	ErrCodeNoSuchDelegationSet = "NoSuchDelegationSet"
   310  
   311  	// ErrCodeNoSuchGeoLocation for service response error code
   312  	// "NoSuchGeoLocation".
   313  	//
   314  	// Amazon Route 53 doesn't support the specified geographic location. For a
   315  	// list of supported geolocation codes, see the GeoLocation (https://docs.aws.amazon.com/Route53/latest/APIReference/API_GeoLocation.html)
   316  	// data type.
   317  	ErrCodeNoSuchGeoLocation = "NoSuchGeoLocation"
   318  
   319  	// ErrCodeNoSuchHealthCheck for service response error code
   320  	// "NoSuchHealthCheck".
   321  	//
   322  	// No health check exists with the specified ID.
   323  	ErrCodeNoSuchHealthCheck = "NoSuchHealthCheck"
   324  
   325  	// ErrCodeNoSuchHostedZone for service response error code
   326  	// "NoSuchHostedZone".
   327  	//
   328  	// No hosted zone exists with the ID that you specified.
   329  	ErrCodeNoSuchHostedZone = "NoSuchHostedZone"
   330  
   331  	// ErrCodeNoSuchKeySigningKey for service response error code
   332  	// "NoSuchKeySigningKey".
   333  	//
   334  	// The specified key-signing key (KSK) doesn't exist.
   335  	ErrCodeNoSuchKeySigningKey = "NoSuchKeySigningKey"
   336  
   337  	// ErrCodeNoSuchQueryLoggingConfig for service response error code
   338  	// "NoSuchQueryLoggingConfig".
   339  	//
   340  	// There is no DNS query logging configuration with the specified ID.
   341  	ErrCodeNoSuchQueryLoggingConfig = "NoSuchQueryLoggingConfig"
   342  
   343  	// ErrCodeNoSuchTrafficPolicy for service response error code
   344  	// "NoSuchTrafficPolicy".
   345  	//
   346  	// No traffic policy exists with the specified ID.
   347  	ErrCodeNoSuchTrafficPolicy = "NoSuchTrafficPolicy"
   348  
   349  	// ErrCodeNoSuchTrafficPolicyInstance for service response error code
   350  	// "NoSuchTrafficPolicyInstance".
   351  	//
   352  	// No traffic policy instance exists with the specified ID.
   353  	ErrCodeNoSuchTrafficPolicyInstance = "NoSuchTrafficPolicyInstance"
   354  
   355  	// ErrCodeNotAuthorizedException for service response error code
   356  	// "NotAuthorizedException".
   357  	//
   358  	// Associating the specified VPC with the specified hosted zone has not been
   359  	// authorized.
   360  	ErrCodeNotAuthorizedException = "NotAuthorizedException"
   361  
   362  	// ErrCodePriorRequestNotComplete for service response error code
   363  	// "PriorRequestNotComplete".
   364  	//
   365  	// If Amazon Route 53 can't process a request before the next request arrives,
   366  	// it will reject subsequent requests for the same hosted zone and return an
   367  	// HTTP 400 error (Bad request). If Route 53 returns this error repeatedly for
   368  	// the same request, we recommend that you wait, in intervals of increasing
   369  	// duration, before you try the request again.
   370  	ErrCodePriorRequestNotComplete = "PriorRequestNotComplete"
   371  
   372  	// ErrCodePublicZoneVPCAssociation for service response error code
   373  	// "PublicZoneVPCAssociation".
   374  	//
   375  	// You're trying to associate a VPC with a public hosted zone. Amazon Route
   376  	// 53 doesn't support associating a VPC with a public hosted zone.
   377  	ErrCodePublicZoneVPCAssociation = "PublicZoneVPCAssociation"
   378  
   379  	// ErrCodeQueryLoggingConfigAlreadyExists for service response error code
   380  	// "QueryLoggingConfigAlreadyExists".
   381  	//
   382  	// You can create only one query logging configuration for a hosted zone, and
   383  	// a query logging configuration already exists for this hosted zone.
   384  	ErrCodeQueryLoggingConfigAlreadyExists = "QueryLoggingConfigAlreadyExists"
   385  
   386  	// ErrCodeThrottlingException for service response error code
   387  	// "ThrottlingException".
   388  	//
   389  	// The limit on the number of requests per second was exceeded.
   390  	ErrCodeThrottlingException = "ThrottlingException"
   391  
   392  	// ErrCodeTooManyHealthChecks for service response error code
   393  	// "TooManyHealthChecks".
   394  	//
   395  	// This health check can't be created because the current account has reached
   396  	// the limit on the number of active health checks.
   397  	//
   398  	// For information about default limits, see Limits (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html)
   399  	// in the Amazon Route 53 Developer Guide.
   400  	//
   401  	// For information about how to get the current limit for an account, see GetAccountLimit
   402  	// (https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetAccountLimit.html).
   403  	// To request a higher limit, create a case (http://aws.amazon.com/route53-request)
   404  	// with the Amazon Web Services Support Center.
   405  	//
   406  	// You have reached the maximum number of active health checks for an Amazon
   407  	// Web Services account. To request a higher limit, create a case (http://aws.amazon.com/route53-request)
   408  	// with the Amazon Web Services Support Center.
   409  	ErrCodeTooManyHealthChecks = "TooManyHealthChecks"
   410  
   411  	// ErrCodeTooManyHostedZones for service response error code
   412  	// "TooManyHostedZones".
   413  	//
   414  	// This operation can't be completed either because the current account has
   415  	// reached the limit on the number of hosted zones or because you've reached
   416  	// the limit on the number of hosted zones that can be associated with a reusable
   417  	// delegation set.
   418  	//
   419  	// For information about default limits, see Limits (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html)
   420  	// in the Amazon Route 53 Developer Guide.
   421  	//
   422  	// To get the current limit on hosted zones that can be created by an account,
   423  	// see GetAccountLimit (https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetAccountLimit.html).
   424  	//
   425  	// To get the current limit on hosted zones that can be associated with a reusable
   426  	// delegation set, see GetReusableDelegationSetLimit (https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetReusableDelegationSetLimit.html).
   427  	//
   428  	// To request a higher limit, create a case (http://aws.amazon.com/route53-request)
   429  	// with the Amazon Web Services Support Center.
   430  	ErrCodeTooManyHostedZones = "TooManyHostedZones"
   431  
   432  	// ErrCodeTooManyKeySigningKeys for service response error code
   433  	// "TooManyKeySigningKeys".
   434  	//
   435  	// You've reached the limit for the number of key-signing keys (KSKs). Remove
   436  	// at least one KSK, and then try again.
   437  	ErrCodeTooManyKeySigningKeys = "TooManyKeySigningKeys"
   438  
   439  	// ErrCodeTooManyTrafficPolicies for service response error code
   440  	// "TooManyTrafficPolicies".
   441  	//
   442  	// This traffic policy can't be created because the current account has reached
   443  	// the limit on the number of traffic policies.
   444  	//
   445  	// For information about default limits, see Limits (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html)
   446  	// in the Amazon Route 53 Developer Guide.
   447  	//
   448  	// To get the current limit for an account, see GetAccountLimit (https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetAccountLimit.html).
   449  	//
   450  	// To request a higher limit, create a case (http://aws.amazon.com/route53-request)
   451  	// with the Amazon Web Services Support Center.
   452  	ErrCodeTooManyTrafficPolicies = "TooManyTrafficPolicies"
   453  
   454  	// ErrCodeTooManyTrafficPolicyInstances for service response error code
   455  	// "TooManyTrafficPolicyInstances".
   456  	//
   457  	// This traffic policy instance can't be created because the current account
   458  	// has reached the limit on the number of traffic policy instances.
   459  	//
   460  	// For information about default limits, see Limits (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html)
   461  	// in the Amazon Route 53 Developer Guide.
   462  	//
   463  	// For information about how to get the current limit for an account, see GetAccountLimit
   464  	// (https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetAccountLimit.html).
   465  	//
   466  	// To request a higher limit, create a case (http://aws.amazon.com/route53-request)
   467  	// with the Amazon Web Services Support Center.
   468  	ErrCodeTooManyTrafficPolicyInstances = "TooManyTrafficPolicyInstances"
   469  
   470  	// ErrCodeTooManyTrafficPolicyVersionsForCurrentPolicy for service response error code
   471  	// "TooManyTrafficPolicyVersionsForCurrentPolicy".
   472  	//
   473  	// This traffic policy version can't be created because you've reached the limit
   474  	// of 1000 on the number of versions that you can create for the current traffic
   475  	// policy.
   476  	//
   477  	// To create more traffic policy versions, you can use GetTrafficPolicy (https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetTrafficPolicy.html)
   478  	// to get the traffic policy document for a specified traffic policy version,
   479  	// and then use CreateTrafficPolicy (https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateTrafficPolicy.html)
   480  	// to create a new traffic policy using the traffic policy document.
   481  	ErrCodeTooManyTrafficPolicyVersionsForCurrentPolicy = "TooManyTrafficPolicyVersionsForCurrentPolicy"
   482  
   483  	// ErrCodeTooManyVPCAssociationAuthorizations for service response error code
   484  	// "TooManyVPCAssociationAuthorizations".
   485  	//
   486  	// You've created the maximum number of authorizations that can be created for
   487  	// the specified hosted zone. To authorize another VPC to be associated with
   488  	// the hosted zone, submit a DeleteVPCAssociationAuthorization request to remove
   489  	// an existing authorization. To get a list of existing authorizations, submit
   490  	// a ListVPCAssociationAuthorizations request.
   491  	ErrCodeTooManyVPCAssociationAuthorizations = "TooManyVPCAssociationAuthorizations"
   492  
   493  	// ErrCodeTrafficPolicyAlreadyExists for service response error code
   494  	// "TrafficPolicyAlreadyExists".
   495  	//
   496  	// A traffic policy that has the same value for Name already exists.
   497  	ErrCodeTrafficPolicyAlreadyExists = "TrafficPolicyAlreadyExists"
   498  
   499  	// ErrCodeTrafficPolicyInUse for service response error code
   500  	// "TrafficPolicyInUse".
   501  	//
   502  	// One or more traffic policy instances were created by using the specified
   503  	// traffic policy.
   504  	ErrCodeTrafficPolicyInUse = "TrafficPolicyInUse"
   505  
   506  	// ErrCodeTrafficPolicyInstanceAlreadyExists for service response error code
   507  	// "TrafficPolicyInstanceAlreadyExists".
   508  	//
   509  	// There is already a traffic policy instance with the specified ID.
   510  	ErrCodeTrafficPolicyInstanceAlreadyExists = "TrafficPolicyInstanceAlreadyExists"
   511  
   512  	// ErrCodeVPCAssociationAuthorizationNotFound for service response error code
   513  	// "VPCAssociationAuthorizationNotFound".
   514  	//
   515  	// The VPC that you specified is not authorized to be associated with the hosted
   516  	// zone.
   517  	ErrCodeVPCAssociationAuthorizationNotFound = "VPCAssociationAuthorizationNotFound"
   518  
   519  	// ErrCodeVPCAssociationNotFound for service response error code
   520  	// "VPCAssociationNotFound".
   521  	//
   522  	// The specified VPC and hosted zone are not currently associated.
   523  	ErrCodeVPCAssociationNotFound = "VPCAssociationNotFound"
   524  )