// Code generated by smithy-go-codegen DO NOT EDIT. package types import ( "fmt" smithy "github.com/aws/smithy-go" ) // This CIDR block is already in use. type CidrBlockInUseException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *CidrBlockInUseException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *CidrBlockInUseException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *CidrBlockInUseException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "CidrBlockInUseException" } return *e.ErrorCodeOverride } func (e *CidrBlockInUseException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // A CIDR collection with this name and a different caller reference already // exists in this account. type CidrCollectionAlreadyExistsException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *CidrCollectionAlreadyExistsException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *CidrCollectionAlreadyExistsException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *CidrCollectionAlreadyExistsException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "CidrCollectionAlreadyExistsException" } return *e.ErrorCodeOverride } func (e *CidrCollectionAlreadyExistsException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // This CIDR collection is in use, and isn't empty. type CidrCollectionInUseException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *CidrCollectionInUseException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *CidrCollectionInUseException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *CidrCollectionInUseException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "CidrCollectionInUseException" } return *e.ErrorCodeOverride } func (e *CidrCollectionInUseException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The CIDR collection version you provided, doesn't match the one in the // ListCidrCollections operation. type CidrCollectionVersionMismatchException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *CidrCollectionVersionMismatchException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *CidrCollectionVersionMismatchException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *CidrCollectionVersionMismatchException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "CidrCollectionVersionMismatchException" } return *e.ErrorCodeOverride } func (e *CidrCollectionVersionMismatchException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // Another user submitted a request to create, update, or delete the object at the // same time that you did. Retry the request. type ConcurrentModification struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *ConcurrentModification) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *ConcurrentModification) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *ConcurrentModification) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "ConcurrentModification" } return *e.ErrorCodeOverride } func (e *ConcurrentModification) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The cause of this error depends on the operation that you're performing: // - Create a public hosted zone: Two hosted zones that have the same name or // that have a parent/child relationship (example.com and test.example.com) can't // have any common name servers. You tried to create a hosted zone that has the // same name as an existing hosted zone or that's the parent or child of an // existing hosted zone, and you specified a delegation set that shares one or more // name servers with the existing hosted zone. For more information, see // CreateReusableDelegationSet (https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateReusableDelegationSet.html) // . // - Create a private hosted zone: A hosted zone with the specified name already // exists and is already associated with the Amazon VPC that you specified. // - Associate VPCs with a private hosted zone: The VPC that you specified is // already associated with another hosted zone that has the same name. type ConflictingDomainExists struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *ConflictingDomainExists) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *ConflictingDomainExists) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *ConflictingDomainExists) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "ConflictingDomainExists" } return *e.ErrorCodeOverride } func (e *ConflictingDomainExists) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // You tried to update a traffic policy instance by using a traffic policy version // that has a different DNS type than the current type for the instance. You // specified the type in the JSON document in the CreateTrafficPolicy or // CreateTrafficPolicyVersion request. type ConflictingTypes struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *ConflictingTypes) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *ConflictingTypes) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *ConflictingTypes) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "ConflictingTypes" } return *e.ErrorCodeOverride } func (e *ConflictingTypes) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // A delegation set with the same owner and caller reference combination has // already been created. type DelegationSetAlreadyCreated struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *DelegationSetAlreadyCreated) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *DelegationSetAlreadyCreated) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *DelegationSetAlreadyCreated) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "DelegationSetAlreadyCreated" } return *e.ErrorCodeOverride } func (e *DelegationSetAlreadyCreated) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The specified delegation set has already been marked as reusable. type DelegationSetAlreadyReusable struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *DelegationSetAlreadyReusable) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *DelegationSetAlreadyReusable) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *DelegationSetAlreadyReusable) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "DelegationSetAlreadyReusable" } return *e.ErrorCodeOverride } func (e *DelegationSetAlreadyReusable) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The specified delegation contains associated hosted zones which must be deleted // before the reusable delegation set can be deleted. type DelegationSetInUse struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *DelegationSetInUse) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *DelegationSetInUse) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *DelegationSetInUse) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "DelegationSetInUse" } return *e.ErrorCodeOverride } func (e *DelegationSetInUse) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // You can create a hosted zone that has the same name as an existing hosted zone // (example.com is common), but there is a limit to the number of hosted zones that // have the same name. If you get this error, Amazon Route 53 has reached that // limit. If you own the domain name and Route 53 generates this error, contact // Customer Support. type DelegationSetNotAvailable struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *DelegationSetNotAvailable) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *DelegationSetNotAvailable) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *DelegationSetNotAvailable) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "DelegationSetNotAvailable" } return *e.ErrorCodeOverride } func (e *DelegationSetNotAvailable) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // A reusable delegation set with the specified ID does not exist. type DelegationSetNotReusable struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *DelegationSetNotReusable) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *DelegationSetNotReusable) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *DelegationSetNotReusable) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "DelegationSetNotReusable" } return *e.ErrorCodeOverride } func (e *DelegationSetNotReusable) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The hosted zone doesn't have any DNSSEC resources. type DNSSECNotFound struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *DNSSECNotFound) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *DNSSECNotFound) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *DNSSECNotFound) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "DNSSECNotFound" } return *e.ErrorCodeOverride } func (e *DNSSECNotFound) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The health check you're attempting to create already exists. Amazon Route 53 // returns this error when you submit a request that has the following values: // - The same value for CallerReference as an existing health check, and one or // more values that differ from the existing health check that has the same caller // reference. // - The same value for CallerReference as a health check that you created and // later deleted, regardless of the other settings in the request. type HealthCheckAlreadyExists struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *HealthCheckAlreadyExists) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *HealthCheckAlreadyExists) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *HealthCheckAlreadyExists) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "HealthCheckAlreadyExists" } return *e.ErrorCodeOverride } func (e *HealthCheckAlreadyExists) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // This error code is not in use. type HealthCheckInUse struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *HealthCheckInUse) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *HealthCheckInUse) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *HealthCheckInUse) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "HealthCheckInUse" } return *e.ErrorCodeOverride } func (e *HealthCheckInUse) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The value of HealthCheckVersion in the request doesn't match the value of // HealthCheckVersion in the health check. type HealthCheckVersionMismatch struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *HealthCheckVersionMismatch) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *HealthCheckVersionMismatch) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *HealthCheckVersionMismatch) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "HealthCheckVersionMismatch" } return *e.ErrorCodeOverride } func (e *HealthCheckVersionMismatch) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The hosted zone you're trying to create already exists. Amazon Route 53 returns // this error when a hosted zone has already been created with the specified // CallerReference . type HostedZoneAlreadyExists struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *HostedZoneAlreadyExists) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *HostedZoneAlreadyExists) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *HostedZoneAlreadyExists) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "HostedZoneAlreadyExists" } return *e.ErrorCodeOverride } func (e *HostedZoneAlreadyExists) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The hosted zone contains resource records that are not SOA or NS records. type HostedZoneNotEmpty struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *HostedZoneNotEmpty) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *HostedZoneNotEmpty) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *HostedZoneNotEmpty) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "HostedZoneNotEmpty" } return *e.ErrorCodeOverride } func (e *HostedZoneNotEmpty) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The specified HostedZone can't be found. type HostedZoneNotFound struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *HostedZoneNotFound) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *HostedZoneNotFound) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *HostedZoneNotFound) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "HostedZoneNotFound" } return *e.ErrorCodeOverride } func (e *HostedZoneNotFound) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The specified hosted zone is a public hosted zone, not a private hosted zone. type HostedZoneNotPrivate struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *HostedZoneNotPrivate) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *HostedZoneNotPrivate) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *HostedZoneNotPrivate) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "HostedZoneNotPrivate" } return *e.ErrorCodeOverride } func (e *HostedZoneNotPrivate) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The hosted zone nameservers don't match the parent nameservers. The hosted zone // and parent must have the same nameservers. type HostedZonePartiallyDelegated struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *HostedZonePartiallyDelegated) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *HostedZonePartiallyDelegated) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *HostedZonePartiallyDelegated) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "HostedZonePartiallyDelegated" } return *e.ErrorCodeOverride } func (e *HostedZonePartiallyDelegated) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The resource you're trying to access is unsupported on this Amazon Route 53 // endpoint. type IncompatibleVersion struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *IncompatibleVersion) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *IncompatibleVersion) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *IncompatibleVersion) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "IncompatibleVersion" } return *e.ErrorCodeOverride } func (e *IncompatibleVersion) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // Amazon Route 53 doesn't have the permissions required to create log streams and // send query logs to log streams. Possible causes include the following: // - There is no resource policy that specifies the log group ARN in the value // for Resource . // - The resource policy that includes the log group ARN in the value for // Resource doesn't have the necessary permissions. // - The resource policy hasn't finished propagating yet. // - The Key management service (KMS) key you specified doesn’t exist or it // can’t be used with the log group associated with query log. Update or provide a // resource policy to grant permissions for the KMS key. // - The Key management service (KMS) key you specified is marked as disabled // for the log group associated with query log. Update or provide a resource policy // to grant permissions for the KMS key. type InsufficientCloudWatchLogsResourcePolicy struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *InsufficientCloudWatchLogsResourcePolicy) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *InsufficientCloudWatchLogsResourcePolicy) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *InsufficientCloudWatchLogsResourcePolicy) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "InsufficientCloudWatchLogsResourcePolicy" } return *e.ErrorCodeOverride } func (e *InsufficientCloudWatchLogsResourcePolicy) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // Parameter name is not valid. type InvalidArgument struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *InvalidArgument) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *InvalidArgument) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *InvalidArgument) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "InvalidArgument" } return *e.ErrorCodeOverride } func (e *InvalidArgument) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // This exception contains a list of messages that might contain one or more error // messages. Each error message indicates one error in the change batch. type InvalidChangeBatch struct { Message *string ErrorCodeOverride *string Messages []string noSmithyDocumentSerde } func (e *InvalidChangeBatch) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *InvalidChangeBatch) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *InvalidChangeBatch) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "InvalidChangeBatch" } return *e.ErrorCodeOverride } func (e *InvalidChangeBatch) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The specified domain name is not valid. type InvalidDomainName struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *InvalidDomainName) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *InvalidDomainName) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *InvalidDomainName) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "InvalidDomainName" } return *e.ErrorCodeOverride } func (e *InvalidDomainName) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The input is not valid. type InvalidInput struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *InvalidInput) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *InvalidInput) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *InvalidInput) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "InvalidInput" } return *e.ErrorCodeOverride } func (e *InvalidInput) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The key-signing key (KSK) name that you specified isn't a valid name. type InvalidKeySigningKeyName struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *InvalidKeySigningKeyName) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *InvalidKeySigningKeyName) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *InvalidKeySigningKeyName) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "InvalidKeySigningKeyName" } return *e.ErrorCodeOverride } func (e *InvalidKeySigningKeyName) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The key-signing key (KSK) status isn't valid or another KSK has the status // INTERNAL_FAILURE . type InvalidKeySigningKeyStatus struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *InvalidKeySigningKeyStatus) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *InvalidKeySigningKeyStatus) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *InvalidKeySigningKeyStatus) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "InvalidKeySigningKeyStatus" } return *e.ErrorCodeOverride } func (e *InvalidKeySigningKeyStatus) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The KeyManagementServiceArn that you specified isn't valid to use with DNSSEC // signing. type InvalidKMSArn struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *InvalidKMSArn) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *InvalidKMSArn) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *InvalidKMSArn) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "InvalidKMSArn" } return *e.ErrorCodeOverride } func (e *InvalidKMSArn) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The value that you specified to get the second or subsequent page of results is // invalid. type InvalidPaginationToken struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *InvalidPaginationToken) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *InvalidPaginationToken) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *InvalidPaginationToken) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "InvalidPaginationToken" } return *e.ErrorCodeOverride } func (e *InvalidPaginationToken) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // Your hosted zone status isn't valid for this operation. In the hosted zone, // change the status to enable DNSSEC or disable DNSSEC . type InvalidSigningStatus struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *InvalidSigningStatus) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *InvalidSigningStatus) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *InvalidSigningStatus) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "InvalidSigningStatus" } return *e.ErrorCodeOverride } func (e *InvalidSigningStatus) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The format of the traffic policy document that you specified in the Document // element is not valid. type InvalidTrafficPolicyDocument struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *InvalidTrafficPolicyDocument) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *InvalidTrafficPolicyDocument) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *InvalidTrafficPolicyDocument) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "InvalidTrafficPolicyDocument" } return *e.ErrorCodeOverride } func (e *InvalidTrafficPolicyDocument) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The VPC ID that you specified either isn't a valid ID or the current account is // not authorized to access this VPC. type InvalidVPCId struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *InvalidVPCId) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *InvalidVPCId) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *InvalidVPCId) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "InvalidVPCId" } return *e.ErrorCodeOverride } func (e *InvalidVPCId) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // You've already created a key-signing key (KSK) with this name or with the same // customer managed key ARN. type KeySigningKeyAlreadyExists struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *KeySigningKeyAlreadyExists) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *KeySigningKeyAlreadyExists) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *KeySigningKeyAlreadyExists) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "KeySigningKeyAlreadyExists" } return *e.ErrorCodeOverride } func (e *KeySigningKeyAlreadyExists) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The key-signing key (KSK) is specified in a parent DS record. type KeySigningKeyInParentDSRecord struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *KeySigningKeyInParentDSRecord) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *KeySigningKeyInParentDSRecord) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *KeySigningKeyInParentDSRecord) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "KeySigningKeyInParentDSRecord" } return *e.ErrorCodeOverride } func (e *KeySigningKeyInParentDSRecord) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The key-signing key (KSK) that you specified can't be deactivated because it's // the only KSK for a currently-enabled DNSSEC. Disable DNSSEC signing, or add or // enable another KSK. type KeySigningKeyInUse struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *KeySigningKeyInUse) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *KeySigningKeyInUse) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *KeySigningKeyInUse) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "KeySigningKeyInUse" } return *e.ErrorCodeOverride } func (e *KeySigningKeyInUse) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // A key-signing key (KSK) with ACTIVE status wasn't found. type KeySigningKeyWithActiveStatusNotFound struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *KeySigningKeyWithActiveStatusNotFound) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *KeySigningKeyWithActiveStatusNotFound) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *KeySigningKeyWithActiveStatusNotFound) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "KeySigningKeyWithActiveStatusNotFound" } return *e.ErrorCodeOverride } func (e *KeySigningKeyWithActiveStatusNotFound) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The VPC that you're trying to disassociate from the private hosted zone is the // last VPC that is associated with the hosted zone. Amazon Route 53 doesn't // support disassociating the last VPC from a hosted zone. type LastVPCAssociation struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *LastVPCAssociation) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *LastVPCAssociation) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *LastVPCAssociation) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "LastVPCAssociation" } return *e.ErrorCodeOverride } func (e *LastVPCAssociation) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // This operation can't be completed because the current account has reached the // limit on the resource you are trying to create. To request a higher limit, // create a case (http://aws.amazon.com/route53-request) with the Amazon Web // Services Support Center. type LimitsExceeded struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *LimitsExceeded) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *LimitsExceeded) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *LimitsExceeded) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "LimitsExceeded" } return *e.ErrorCodeOverride } func (e *LimitsExceeded) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // A change with the specified change ID does not exist. type NoSuchChange struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *NoSuchChange) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *NoSuchChange) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *NoSuchChange) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "NoSuchChange" } return *e.ErrorCodeOverride } func (e *NoSuchChange) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The CIDR collection you specified, doesn't exist. type NoSuchCidrCollectionException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *NoSuchCidrCollectionException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *NoSuchCidrCollectionException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *NoSuchCidrCollectionException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "NoSuchCidrCollectionException" } return *e.ErrorCodeOverride } func (e *NoSuchCidrCollectionException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The CIDR collection location doesn't match any locations in your account. type NoSuchCidrLocationException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *NoSuchCidrLocationException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *NoSuchCidrLocationException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *NoSuchCidrLocationException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "NoSuchCidrLocationException" } return *e.ErrorCodeOverride } func (e *NoSuchCidrLocationException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // There is no CloudWatch Logs log group with the specified ARN. type NoSuchCloudWatchLogsLogGroup struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *NoSuchCloudWatchLogsLogGroup) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *NoSuchCloudWatchLogsLogGroup) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *NoSuchCloudWatchLogsLogGroup) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "NoSuchCloudWatchLogsLogGroup" } return *e.ErrorCodeOverride } func (e *NoSuchCloudWatchLogsLogGroup) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // A reusable delegation set with the specified ID does not exist. type NoSuchDelegationSet struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *NoSuchDelegationSet) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *NoSuchDelegationSet) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *NoSuchDelegationSet) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "NoSuchDelegationSet" } return *e.ErrorCodeOverride } func (e *NoSuchDelegationSet) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // Amazon Route 53 doesn't support the specified geographic location. For a list // of supported geolocation codes, see the GeoLocation (https://docs.aws.amazon.com/Route53/latest/APIReference/API_GeoLocation.html) // data type. type NoSuchGeoLocation struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *NoSuchGeoLocation) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *NoSuchGeoLocation) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *NoSuchGeoLocation) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "NoSuchGeoLocation" } return *e.ErrorCodeOverride } func (e *NoSuchGeoLocation) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // No health check exists with the specified ID. type NoSuchHealthCheck struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *NoSuchHealthCheck) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *NoSuchHealthCheck) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *NoSuchHealthCheck) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "NoSuchHealthCheck" } return *e.ErrorCodeOverride } func (e *NoSuchHealthCheck) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // No hosted zone exists with the ID that you specified. type NoSuchHostedZone struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *NoSuchHostedZone) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *NoSuchHostedZone) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *NoSuchHostedZone) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "NoSuchHostedZone" } return *e.ErrorCodeOverride } func (e *NoSuchHostedZone) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The specified key-signing key (KSK) doesn't exist. type NoSuchKeySigningKey struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *NoSuchKeySigningKey) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *NoSuchKeySigningKey) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *NoSuchKeySigningKey) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "NoSuchKeySigningKey" } return *e.ErrorCodeOverride } func (e *NoSuchKeySigningKey) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // There is no DNS query logging configuration with the specified ID. type NoSuchQueryLoggingConfig struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *NoSuchQueryLoggingConfig) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *NoSuchQueryLoggingConfig) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *NoSuchQueryLoggingConfig) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "NoSuchQueryLoggingConfig" } return *e.ErrorCodeOverride } func (e *NoSuchQueryLoggingConfig) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // No traffic policy exists with the specified ID. type NoSuchTrafficPolicy struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *NoSuchTrafficPolicy) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *NoSuchTrafficPolicy) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *NoSuchTrafficPolicy) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "NoSuchTrafficPolicy" } return *e.ErrorCodeOverride } func (e *NoSuchTrafficPolicy) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // No traffic policy instance exists with the specified ID. type NoSuchTrafficPolicyInstance struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *NoSuchTrafficPolicyInstance) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *NoSuchTrafficPolicyInstance) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *NoSuchTrafficPolicyInstance) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "NoSuchTrafficPolicyInstance" } return *e.ErrorCodeOverride } func (e *NoSuchTrafficPolicyInstance) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // Associating the specified VPC with the specified hosted zone has not been // authorized. type NotAuthorizedException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *NotAuthorizedException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *NotAuthorizedException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *NotAuthorizedException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "NotAuthorizedException" } return *e.ErrorCodeOverride } func (e *NotAuthorizedException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // If Amazon Route 53 can't process a request before the next request arrives, it // will reject subsequent requests for the same hosted zone and return an HTTP 400 // error ( Bad request ). If Route 53 returns this error repeatedly for the same // request, we recommend that you wait, in intervals of increasing duration, before // you try the request again. type PriorRequestNotComplete struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *PriorRequestNotComplete) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *PriorRequestNotComplete) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *PriorRequestNotComplete) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "PriorRequestNotComplete" } return *e.ErrorCodeOverride } func (e *PriorRequestNotComplete) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // You're trying to associate a VPC with a public hosted zone. Amazon Route 53 // doesn't support associating a VPC with a public hosted zone. type PublicZoneVPCAssociation struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *PublicZoneVPCAssociation) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *PublicZoneVPCAssociation) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *PublicZoneVPCAssociation) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "PublicZoneVPCAssociation" } return *e.ErrorCodeOverride } func (e *PublicZoneVPCAssociation) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // You can create only one query logging configuration for a hosted zone, and a // query logging configuration already exists for this hosted zone. type QueryLoggingConfigAlreadyExists struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *QueryLoggingConfigAlreadyExists) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *QueryLoggingConfigAlreadyExists) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *QueryLoggingConfigAlreadyExists) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "QueryLoggingConfigAlreadyExists" } return *e.ErrorCodeOverride } func (e *QueryLoggingConfigAlreadyExists) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The limit on the number of requests per second was exceeded. type ThrottlingException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *ThrottlingException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *ThrottlingException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *ThrottlingException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "ThrottlingException" } return *e.ErrorCodeOverride } func (e *ThrottlingException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // This health check can't be created because the current account has reached the // limit on the number of active health checks. For information about default // limits, see Limits (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html) // in the Amazon Route 53 Developer Guide. For information about how to get the // current limit for an account, see GetAccountLimit (https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetAccountLimit.html) // . To request a higher limit, create a case (http://aws.amazon.com/route53-request) // with the Amazon Web Services Support Center. You have reached the maximum number // of active health checks for an Amazon Web Services account. To request a higher // limit, create a case (http://aws.amazon.com/route53-request) with the Amazon // Web Services Support Center. type TooManyHealthChecks struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *TooManyHealthChecks) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *TooManyHealthChecks) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *TooManyHealthChecks) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "TooManyHealthChecks" } return *e.ErrorCodeOverride } func (e *TooManyHealthChecks) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // This operation can't be completed either because the current account has // reached the limit on the number of hosted zones or because you've reached the // limit on the number of hosted zones that can be associated with a reusable // delegation set. For information about default limits, see Limits (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html) // in the Amazon Route 53 Developer Guide. To get the current limit on hosted zones // that can be created by an account, see GetAccountLimit (https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetAccountLimit.html) // . To get the current limit on hosted zones that can be associated with a // reusable delegation set, see GetReusableDelegationSetLimit (https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetReusableDelegationSetLimit.html) // . To request a higher limit, create a case (http://aws.amazon.com/route53-request) // with the Amazon Web Services Support Center. type TooManyHostedZones struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *TooManyHostedZones) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *TooManyHostedZones) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *TooManyHostedZones) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "TooManyHostedZones" } return *e.ErrorCodeOverride } func (e *TooManyHostedZones) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // You've reached the limit for the number of key-signing keys (KSKs). Remove at // least one KSK, and then try again. type TooManyKeySigningKeys struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *TooManyKeySigningKeys) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *TooManyKeySigningKeys) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *TooManyKeySigningKeys) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "TooManyKeySigningKeys" } return *e.ErrorCodeOverride } func (e *TooManyKeySigningKeys) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // This traffic policy can't be created because the current account has reached // the limit on the number of traffic policies. For information about default // limits, see Limits (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html) // in the Amazon Route 53 Developer Guide. To get the current limit for an account, // see GetAccountLimit (https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetAccountLimit.html) // . To request a higher limit, create a case (http://aws.amazon.com/route53-request) // with the Amazon Web Services Support Center. type TooManyTrafficPolicies struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *TooManyTrafficPolicies) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *TooManyTrafficPolicies) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *TooManyTrafficPolicies) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "TooManyTrafficPolicies" } return *e.ErrorCodeOverride } func (e *TooManyTrafficPolicies) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // This traffic policy instance can't be created because the current account has // reached the limit on the number of traffic policy instances. For information // about default limits, see Limits (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html) // in the Amazon Route 53 Developer Guide. For information about how to get the // current limit for an account, see GetAccountLimit (https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetAccountLimit.html) // . To request a higher limit, create a case (http://aws.amazon.com/route53-request) // with the Amazon Web Services Support Center. type TooManyTrafficPolicyInstances struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *TooManyTrafficPolicyInstances) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *TooManyTrafficPolicyInstances) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *TooManyTrafficPolicyInstances) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "TooManyTrafficPolicyInstances" } return *e.ErrorCodeOverride } func (e *TooManyTrafficPolicyInstances) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // This traffic policy version can't be created because you've reached the limit // of 1000 on the number of versions that you can create for the current traffic // policy. To create more traffic policy versions, you can use GetTrafficPolicy (https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetTrafficPolicy.html) // to get the traffic policy document for a specified traffic policy version, and // then use CreateTrafficPolicy (https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateTrafficPolicy.html) // to create a new traffic policy using the traffic policy document. type TooManyTrafficPolicyVersionsForCurrentPolicy struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *TooManyTrafficPolicyVersionsForCurrentPolicy) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *TooManyTrafficPolicyVersionsForCurrentPolicy) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *TooManyTrafficPolicyVersionsForCurrentPolicy) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "TooManyTrafficPolicyVersionsForCurrentPolicy" } return *e.ErrorCodeOverride } func (e *TooManyTrafficPolicyVersionsForCurrentPolicy) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // You've created the maximum number of authorizations that can be created for the // specified hosted zone. To authorize another VPC to be associated with the hosted // zone, submit a DeleteVPCAssociationAuthorization request to remove an existing // authorization. To get a list of existing authorizations, submit a // ListVPCAssociationAuthorizations request. type TooManyVPCAssociationAuthorizations struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *TooManyVPCAssociationAuthorizations) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *TooManyVPCAssociationAuthorizations) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *TooManyVPCAssociationAuthorizations) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "TooManyVPCAssociationAuthorizations" } return *e.ErrorCodeOverride } func (e *TooManyVPCAssociationAuthorizations) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // A traffic policy that has the same value for Name already exists. type TrafficPolicyAlreadyExists struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *TrafficPolicyAlreadyExists) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *TrafficPolicyAlreadyExists) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *TrafficPolicyAlreadyExists) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "TrafficPolicyAlreadyExists" } return *e.ErrorCodeOverride } func (e *TrafficPolicyAlreadyExists) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // There is already a traffic policy instance with the specified ID. type TrafficPolicyInstanceAlreadyExists struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *TrafficPolicyInstanceAlreadyExists) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *TrafficPolicyInstanceAlreadyExists) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *TrafficPolicyInstanceAlreadyExists) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "TrafficPolicyInstanceAlreadyExists" } return *e.ErrorCodeOverride } func (e *TrafficPolicyInstanceAlreadyExists) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // One or more traffic policy instances were created by using the specified // traffic policy. type TrafficPolicyInUse struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *TrafficPolicyInUse) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *TrafficPolicyInUse) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *TrafficPolicyInUse) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "TrafficPolicyInUse" } return *e.ErrorCodeOverride } func (e *TrafficPolicyInUse) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The VPC that you specified is not authorized to be associated with the hosted // zone. type VPCAssociationAuthorizationNotFound struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *VPCAssociationAuthorizationNotFound) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *VPCAssociationAuthorizationNotFound) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *VPCAssociationAuthorizationNotFound) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "VPCAssociationAuthorizationNotFound" } return *e.ErrorCodeOverride } func (e *VPCAssociationAuthorizationNotFound) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The specified VPC and hosted zone are not currently associated. type VPCAssociationNotFound struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *VPCAssociationNotFound) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *VPCAssociationNotFound) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *VPCAssociationNotFound) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "VPCAssociationNotFound" } return *e.ErrorCodeOverride } func (e *VPCAssociationNotFound) ErrorFault() smithy.ErrorFault { return smithy.FaultClient }