package types
import "github.com/aws/aws-sdk-go-v2/service/mobile/types"
Index ¶
- type AccountActionRequiredException
- func (e *AccountActionRequiredException) Error() string
- func (e *AccountActionRequiredException) ErrorCode() string
- func (e *AccountActionRequiredException) ErrorFault() smithy.ErrorFault
- func (e *AccountActionRequiredException) ErrorMessage() string
- type BadRequestException
- func (e *BadRequestException) Error() string
- func (e *BadRequestException) ErrorCode() string
- func (e *BadRequestException) ErrorFault() smithy.ErrorFault
- func (e *BadRequestException) ErrorMessage() string
- type BundleDetails
- type InternalFailureException
- func (e *InternalFailureException) Error() string
- func (e *InternalFailureException) ErrorCode() string
- func (e *InternalFailureException) ErrorFault() smithy.ErrorFault
- func (e *InternalFailureException) ErrorMessage() string
- type LimitExceededException
- func (e *LimitExceededException) Error() string
- func (e *LimitExceededException) ErrorCode() string
- func (e *LimitExceededException) ErrorFault() smithy.ErrorFault
- func (e *LimitExceededException) ErrorMessage() string
- type NotFoundException
- func (e *NotFoundException) Error() string
- func (e *NotFoundException) ErrorCode() string
- func (e *NotFoundException) ErrorFault() smithy.ErrorFault
- func (e *NotFoundException) ErrorMessage() string
- type Platform
- type ProjectDetails
- type ProjectState
- type ProjectSummary
- type Resource
- type ServiceUnavailableException
- func (e *ServiceUnavailableException) Error() string
- func (e *ServiceUnavailableException) ErrorCode() string
- func (e *ServiceUnavailableException) ErrorFault() smithy.ErrorFault
- func (e *ServiceUnavailableException) ErrorMessage() string
- type TooManyRequestsException
- func (e *TooManyRequestsException) Error() string
- func (e *TooManyRequestsException) ErrorCode() string
- func (e *TooManyRequestsException) ErrorFault() smithy.ErrorFault
- func (e *TooManyRequestsException) ErrorMessage() string
- type UnauthorizedException
Types ¶
type AccountActionRequiredException ¶
type AccountActionRequiredException struct { Message *string // contains filtered or unexported fields }
Account Action is required in order to continue the request.
func (*AccountActionRequiredException) Error ¶
func (e *AccountActionRequiredException) Error() string
func (*AccountActionRequiredException) ErrorCode ¶
func (e *AccountActionRequiredException) ErrorCode() string
func (*AccountActionRequiredException) ErrorFault ¶
func (e *AccountActionRequiredException) ErrorFault() smithy.ErrorFault
func (*AccountActionRequiredException) ErrorMessage ¶
func (e *AccountActionRequiredException) ErrorMessage() string
type BadRequestException ¶
type BadRequestException struct { Message *string // contains filtered or unexported fields }
The request cannot be processed because some parameter is not valid or the project state prevents the operation from being performed.
func (*BadRequestException) Error ¶
func (e *BadRequestException) Error() string
func (*BadRequestException) ErrorCode ¶
func (e *BadRequestException) ErrorCode() string
func (*BadRequestException) ErrorFault ¶
func (e *BadRequestException) ErrorFault() smithy.ErrorFault
func (*BadRequestException) ErrorMessage ¶
func (e *BadRequestException) ErrorMessage() string
type BundleDetails ¶
type BundleDetails struct { // Developer desktop or mobile app or website platforms. AvailablePlatforms []Platform // Unique bundle identifier. BundleId *string // Description of the download bundle. Description *string // Icon for the download bundle. IconUrl *string // Title of the download bundle. Title *string // Version of the download bundle. Version *string // contains filtered or unexported fields }
The details of the bundle.
type InternalFailureException ¶
type InternalFailureException struct { Message *string // contains filtered or unexported fields }
The service has encountered an unexpected error condition which prevents it from servicing the request.
func (*InternalFailureException) Error ¶
func (e *InternalFailureException) Error() string
func (*InternalFailureException) ErrorCode ¶
func (e *InternalFailureException) ErrorCode() string
func (*InternalFailureException) ErrorFault ¶
func (e *InternalFailureException) ErrorFault() smithy.ErrorFault
func (*InternalFailureException) ErrorMessage ¶
func (e *InternalFailureException) ErrorMessage() string
type LimitExceededException ¶
type LimitExceededException struct { Message *string RetryAfterSeconds *string // contains filtered or unexported fields }
There are too many AWS Mobile Hub projects in the account or the account has exceeded the maximum number of resources in some AWS service. You should create another sub-account using AWS Organizations or remove some resources and retry your request.
func (*LimitExceededException) Error ¶
func (e *LimitExceededException) Error() string
func (*LimitExceededException) ErrorCode ¶
func (e *LimitExceededException) ErrorCode() string
func (*LimitExceededException) ErrorFault ¶
func (e *LimitExceededException) ErrorFault() smithy.ErrorFault
func (*LimitExceededException) ErrorMessage ¶
func (e *LimitExceededException) ErrorMessage() string
type NotFoundException ¶
type NotFoundException struct { Message *string // contains filtered or unexported fields }
No entity can be found with the specified identifier.
func (*NotFoundException) Error ¶
func (e *NotFoundException) Error() string
func (*NotFoundException) ErrorCode ¶
func (e *NotFoundException) ErrorCode() string
func (*NotFoundException) ErrorFault ¶
func (e *NotFoundException) ErrorFault() smithy.ErrorFault
func (*NotFoundException) ErrorMessage ¶
func (e *NotFoundException) ErrorMessage() string
type Platform ¶
type Platform string
const ( PlatformOsx Platform = "OSX" PlatformWindows Platform = "WINDOWS" PlatformLinux Platform = "LINUX" PlatformObjc Platform = "OBJC" PlatformSwift Platform = "SWIFT" PlatformAndroid Platform = "ANDROID" PlatformJavascript Platform = "JAVASCRIPT" )
Enum values for Platform
func (Platform) Values ¶
Values returns all known values for Platform. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.
type ProjectDetails ¶
type ProjectDetails struct { // Website URL for this project in the AWS Mobile Hub console. ConsoleUrl *string // Date the project was created. CreatedDate *time.Time // Date of the last modification of the project. LastUpdatedDate *time.Time // Name of the project. Name *string // Unique project identifier. ProjectId *string // Default region to use for AWS resource creation in the AWS Mobile Hub project. Region *string // List of AWS resources associated with a project. Resources []Resource // Synchronization state for a project. State ProjectState // contains filtered or unexported fields }
Detailed information about an AWS Mobile Hub project.
type ProjectState ¶
type ProjectState string
const ( ProjectStateNormal ProjectState = "NORMAL" ProjectStateSyncing ProjectState = "SYNCING" ProjectStateImporting ProjectState = "IMPORTING" )
Enum values for ProjectState
func (ProjectState) Values ¶
func (ProjectState) Values() []ProjectState
Values returns all known values for ProjectState. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.
type ProjectSummary ¶
type ProjectSummary struct { // Name of the project. Name *string // Unique project identifier. ProjectId *string // contains filtered or unexported fields }
Summary information about an AWS Mobile Hub project.
type Resource ¶
type Resource struct { // AWS resource name which uniquely identifies the resource in AWS systems. Arn *string // Key-value attribute pairs. Attributes map[string]string // Identifies which feature in AWS Mobile Hub is associated with this AWS resource. Feature *string // Name of the AWS resource (e.g., for an Amazon S3 bucket this is the name of the // bucket). Name *string // Simplified name for type of AWS resource (e.g., bucket is an Amazon S3 bucket). Type *string // contains filtered or unexported fields }
Information about an instance of an AWS resource associated with a project.
type ServiceUnavailableException ¶
type ServiceUnavailableException struct { string *string // contains filtered or unexported fields }*
The service is temporarily unavailable. The request should be retried after some time delay.
func (*ServiceUnavailableException) Error ¶
func (e *ServiceUnavailableException) Error() string
func (*ServiceUnavailableException) ErrorCode ¶
func (e *ServiceUnavailableException) ErrorCode() string
func (*ServiceUnavailableException) ErrorFault ¶
func (e *ServiceUnavailableException) ErrorFault() smithy.ErrorFault
func (*ServiceUnavailableException) ErrorMessage ¶
func (e *ServiceUnavailableException) ErrorMessage() string
type TooManyRequestsException ¶
type TooManyRequestsException struct { Message *string RetryAfterSeconds *string // contains filtered or unexported fields }
Too many requests have been received for this AWS account in too short a time. The request should be retried after some time delay.
func (*TooManyRequestsException) Error ¶
func (e *TooManyRequestsException) Error() string
func (*TooManyRequestsException) ErrorCode ¶
func (e *TooManyRequestsException) ErrorCode() string
func (*TooManyRequestsException) ErrorFault ¶
func (e *TooManyRequestsException) ErrorFault() smithy.ErrorFault
func (*TooManyRequestsException) ErrorMessage ¶
func (e *TooManyRequestsException) ErrorMessage() string
type UnauthorizedException ¶
type UnauthorizedException struct { string // contains filtered or unexported fields }*
Credentials of the caller are insufficient to authorize the request.
func (*UnauthorizedException) Error ¶
func (e *UnauthorizedException) Error() string
func (*UnauthorizedException) ErrorCode ¶
func (e *UnauthorizedException) ErrorCode() string
func (*UnauthorizedException) ErrorFault ¶
func (e *UnauthorizedException) ErrorFault() smithy.ErrorFault
func (*UnauthorizedException) ErrorMessage ¶
func (e *UnauthorizedException) ErrorMessage() string
Source Files ¶
- Version
- v1.4.0
- Published
- Aug 27, 2021
- Platform
- js/wasm
- Imports
- 4 packages
- Last checked
- 57 minutes ago –
Tools for package owners.