types

package
v1.1.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 10, 2021 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AccountActionRequiredException

type AccountActionRequiredException struct {
	Message *string
}

Account Action is required in order to continue the request.

func (*AccountActionRequiredException) Error

func (*AccountActionRequiredException) ErrorCode

func (e *AccountActionRequiredException) ErrorCode() string

func (*AccountActionRequiredException) ErrorFault

func (*AccountActionRequiredException) ErrorMessage

func (e *AccountActionRequiredException) ErrorMessage() string

type BadRequestException

type BadRequestException struct {
	Message *string
}

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
}

The details of the bundle.

type InternalFailureException

type InternalFailureException struct {
	Message *string
}

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
}

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
}

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 added in v0.29.0

func (Platform) Values() []Platform

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
}

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 added in v0.29.0

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
}

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
}

Information about an instance of an AWS resource associated with a project.

type ServiceUnavailableException

type ServiceUnavailableException struct {
	Message *string

	RetryAfterSeconds *string
}

The service is temporarily unavailable. The request should be retried after some time delay.

func (*ServiceUnavailableException) Error

func (*ServiceUnavailableException) ErrorCode

func (e *ServiceUnavailableException) ErrorCode() string

func (*ServiceUnavailableException) ErrorFault

func (*ServiceUnavailableException) ErrorMessage

func (e *ServiceUnavailableException) ErrorMessage() string

type TooManyRequestsException

type TooManyRequestsException struct {
	Message *string

	RetryAfterSeconds *string
}

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 {
	Message *string
}

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

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL