package types
import "github.com/aws/aws-sdk-go-v2/service/cloud9/types"
Index ¶
- type BadRequestException
- func (e *BadRequestException) Error() string
- func (e *BadRequestException) ErrorCode() string
- func (e *BadRequestException) ErrorFault() smithy.ErrorFault
- func (e *BadRequestException) ErrorMessage() string
- func (e *BadRequestException) GetClassName() string
- func (e *BadRequestException) GetCode() int32
- func (e *BadRequestException) GetMessage() string
- func (e *BadRequestException) HasClassName() bool
- func (e *BadRequestException) HasCode() bool
- func (e *BadRequestException) HasMessage() bool
- type ConflictException
- func (e *ConflictException) Error() string
- func (e *ConflictException) ErrorCode() string
- func (e *ConflictException) ErrorFault() smithy.ErrorFault
- func (e *ConflictException) ErrorMessage() string
- func (e *ConflictException) GetClassName() string
- func (e *ConflictException) GetCode() int32
- func (e *ConflictException) GetMessage() string
- func (e *ConflictException) HasClassName() bool
- func (e *ConflictException) HasCode() bool
- func (e *ConflictException) HasMessage() bool
- type Environment
- type EnvironmentLifecycle
- type EnvironmentLifecycleStatus
- type EnvironmentMember
- type EnvironmentStatus
- type EnvironmentType
- type ForbiddenException
- func (e *ForbiddenException) Error() string
- func (e *ForbiddenException) ErrorCode() string
- func (e *ForbiddenException) ErrorFault() smithy.ErrorFault
- func (e *ForbiddenException) ErrorMessage() string
- func (e *ForbiddenException) GetClassName() string
- func (e *ForbiddenException) GetCode() int32
- func (e *ForbiddenException) GetMessage() string
- func (e *ForbiddenException) HasClassName() bool
- func (e *ForbiddenException) HasCode() bool
- func (e *ForbiddenException) HasMessage() bool
- type InternalServerErrorException
- func (e *InternalServerErrorException) Error() string
- func (e *InternalServerErrorException) ErrorCode() string
- func (e *InternalServerErrorException) ErrorFault() smithy.ErrorFault
- func (e *InternalServerErrorException) ErrorMessage() string
- func (e *InternalServerErrorException) GetClassName() string
- func (e *InternalServerErrorException) GetCode() int32
- func (e *InternalServerErrorException) GetMessage() string
- func (e *InternalServerErrorException) HasClassName() bool
- func (e *InternalServerErrorException) HasCode() bool
- func (e *InternalServerErrorException) HasMessage() bool
- type LimitExceededException
- func (e *LimitExceededException) Error() string
- func (e *LimitExceededException) ErrorCode() string
- func (e *LimitExceededException) ErrorFault() smithy.ErrorFault
- func (e *LimitExceededException) ErrorMessage() string
- func (e *LimitExceededException) GetClassName() string
- func (e *LimitExceededException) GetCode() int32
- func (e *LimitExceededException) GetMessage() string
- func (e *LimitExceededException) HasClassName() bool
- func (e *LimitExceededException) HasCode() bool
- func (e *LimitExceededException) HasMessage() bool
- type MemberPermissions
- type NotFoundException
- func (e *NotFoundException) Error() string
- func (e *NotFoundException) ErrorCode() string
- func (e *NotFoundException) ErrorFault() smithy.ErrorFault
- func (e *NotFoundException) ErrorMessage() string
- func (e *NotFoundException) GetClassName() string
- func (e *NotFoundException) GetCode() int32
- func (e *NotFoundException) GetMessage() string
- func (e *NotFoundException) HasClassName() bool
- func (e *NotFoundException) HasCode() bool
- func (e *NotFoundException) HasMessage() bool
- type Permissions
- type Tag
- type TooManyRequestsException
- func (e *TooManyRequestsException) Error() string
- func (e *TooManyRequestsException) ErrorCode() string
- func (e *TooManyRequestsException) ErrorFault() smithy.ErrorFault
- func (e *TooManyRequestsException) ErrorMessage() string
- func (e *TooManyRequestsException) GetClassName() string
- func (e *TooManyRequestsException) GetCode() int32
- func (e *TooManyRequestsException) GetMessage() string
- func (e *TooManyRequestsException) HasClassName() bool
- func (e *TooManyRequestsException) HasCode() bool
- func (e *TooManyRequestsException) HasMessage() bool
Types ¶
type BadRequestException ¶
The target request is invalid.
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
func (*BadRequestException) GetClassName ¶
func (e *BadRequestException) GetClassName() string
func (*BadRequestException) GetCode ¶
func (e *BadRequestException) GetCode() int32
func (*BadRequestException) GetMessage ¶
func (e *BadRequestException) GetMessage() string
func (*BadRequestException) HasClassName ¶
func (e *BadRequestException) HasClassName() bool
func (*BadRequestException) HasCode ¶
func (e *BadRequestException) HasCode() bool
func (*BadRequestException) HasMessage ¶
func (e *BadRequestException) HasMessage() bool
type ConflictException ¶
A conflict occurred.
func (*ConflictException) Error ¶
func (e *ConflictException) Error() string
func (*ConflictException) ErrorCode ¶
func (e *ConflictException) ErrorCode() string
func (*ConflictException) ErrorFault ¶
func (e *ConflictException) ErrorFault() smithy.ErrorFault
func (*ConflictException) ErrorMessage ¶
func (e *ConflictException) ErrorMessage() string
func (*ConflictException) GetClassName ¶
func (e *ConflictException) GetClassName() string
func (*ConflictException) GetCode ¶
func (e *ConflictException) GetCode() int32
func (*ConflictException) GetMessage ¶
func (e *ConflictException) GetMessage() string
func (*ConflictException) HasClassName ¶
func (e *ConflictException) HasClassName() bool
func (*ConflictException) HasCode ¶
func (e *ConflictException) HasCode() bool
func (*ConflictException) HasMessage ¶
func (e *ConflictException) HasMessage() bool
type Environment ¶
type Environment struct { // The Amazon Resource Name (ARN) of the environment. Arn *string // The state of the environment in its creation or deletion lifecycle. Lifecycle *EnvironmentLifecycle // The type of environment. Valid values include the following: // // * ec2: An // Amazon Elastic Compute Cloud (Amazon EC2) instance connects to the // environment. // // * ssh: Your own server connects to the environment. Type EnvironmentType // The description for the environment. Description *string // The name of the environment. Name *string // The Amazon Resource Name (ARN) of the environment owner. OwnerArn *string // The ID of the environment. Id *string }
Information about an AWS Cloud9 development environment.
type EnvironmentLifecycle ¶
type EnvironmentLifecycle struct { // The current creation or deletion lifecycle state of the environment. // // * // CREATING: The environment is in the process of being created. // // * CREATED: // The environment was successfully created. // // * CREATE_FAILED: The environment // failed to be created. // // * DELETING: The environment is in the process of // being deleted. // // * DELETE_FAILED: The environment failed to delete. Status EnvironmentLifecycleStatus // If the environment failed to delete, the Amazon Resource Name (ARN) of the // related AWS resource. FailureResource *string // Any informational message about the lifecycle state of the environment. Reason *string }
Information about the current creation or deletion lifecycle state of an AWS Cloud9 development environment.
type EnvironmentLifecycleStatus ¶
type EnvironmentLifecycleStatus string
const ( EnvironmentLifecycleStatusCreating EnvironmentLifecycleStatus = "CREATING" EnvironmentLifecycleStatusCreated EnvironmentLifecycleStatus = "CREATED" EnvironmentLifecycleStatusCreate_failed EnvironmentLifecycleStatus = "CREATE_FAILED" EnvironmentLifecycleStatusDeleting EnvironmentLifecycleStatus = "DELETING" EnvironmentLifecycleStatusDelete_failed EnvironmentLifecycleStatus = "DELETE_FAILED" )
Enum values for EnvironmentLifecycleStatus
type EnvironmentMember ¶
type EnvironmentMember struct { // The user ID in AWS Identity and Access Management (AWS IAM) of the environment // member. UserId *string // The time, expressed in epoch time format, when the environment member last // opened the environment. LastAccess *time.Time // The ID of the environment for the environment member. EnvironmentId *string // The Amazon Resource Name (ARN) of the environment member. UserArn *string // The type of environment member permissions associated with this environment // member. Available values include: // // * owner: Owns the environment. // // * // read-only: Has read-only access to the environment. // // * read-write: Has // read-write access to the environment. Permissions Permissions }
Information about an environment member for an AWS Cloud9 development environment.
type EnvironmentStatus ¶
type EnvironmentStatus string
const ( EnvironmentStatusError EnvironmentStatus = "error" EnvironmentStatusCreating EnvironmentStatus = "creating" EnvironmentStatusConnecting EnvironmentStatus = "connecting" EnvironmentStatusReady EnvironmentStatus = "ready" EnvironmentStatusStopping EnvironmentStatus = "stopping" EnvironmentStatusStopped EnvironmentStatus = "stopped" EnvironmentStatusDeleting EnvironmentStatus = "deleting" )
Enum values for EnvironmentStatus
type EnvironmentType ¶
type EnvironmentType string
const ( EnvironmentTypeSsh EnvironmentType = "ssh" EnvironmentTypeEc2 EnvironmentType = "ec2" )
Enum values for EnvironmentType
type ForbiddenException ¶
An access permissions issue occurred.
func (*ForbiddenException) Error ¶
func (e *ForbiddenException) Error() string
func (*ForbiddenException) ErrorCode ¶
func (e *ForbiddenException) ErrorCode() string
func (*ForbiddenException) ErrorFault ¶
func (e *ForbiddenException) ErrorFault() smithy.ErrorFault
func (*ForbiddenException) ErrorMessage ¶
func (e *ForbiddenException) ErrorMessage() string
func (*ForbiddenException) GetClassName ¶
func (e *ForbiddenException) GetClassName() string
func (*ForbiddenException) GetCode ¶
func (e *ForbiddenException) GetCode() int32
func (*ForbiddenException) GetMessage ¶
func (e *ForbiddenException) GetMessage() string
func (*ForbiddenException) HasClassName ¶
func (e *ForbiddenException) HasClassName() bool
func (*ForbiddenException) HasCode ¶
func (e *ForbiddenException) HasCode() bool
func (*ForbiddenException) HasMessage ¶
func (e *ForbiddenException) HasMessage() bool
type InternalServerErrorException ¶
An internal server error occurred.
func (*InternalServerErrorException) Error ¶
func (e *InternalServerErrorException) Error() string
func (*InternalServerErrorException) ErrorCode ¶
func (e *InternalServerErrorException) ErrorCode() string
func (*InternalServerErrorException) ErrorFault ¶
func (e *InternalServerErrorException) ErrorFault() smithy.ErrorFault
func (*InternalServerErrorException) ErrorMessage ¶
func (e *InternalServerErrorException) ErrorMessage() string
func (*InternalServerErrorException) GetClassName ¶
func (e *InternalServerErrorException) GetClassName() string
func (*InternalServerErrorException) GetCode ¶
func (e *InternalServerErrorException) GetCode() int32
func (*InternalServerErrorException) GetMessage ¶
func (e *InternalServerErrorException) GetMessage() string
func (*InternalServerErrorException) HasClassName ¶
func (e *InternalServerErrorException) HasClassName() bool
func (*InternalServerErrorException) HasCode ¶
func (e *InternalServerErrorException) HasCode() bool
func (*InternalServerErrorException) HasMessage ¶
func (e *InternalServerErrorException) HasMessage() bool
type LimitExceededException ¶
A service limit was exceeded.
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
func (*LimitExceededException) GetClassName ¶
func (e *LimitExceededException) GetClassName() string
func (*LimitExceededException) GetCode ¶
func (e *LimitExceededException) GetCode() int32
func (*LimitExceededException) GetMessage ¶
func (e *LimitExceededException) GetMessage() string
func (*LimitExceededException) HasClassName ¶
func (e *LimitExceededException) HasClassName() bool
func (*LimitExceededException) HasCode ¶
func (e *LimitExceededException) HasCode() bool
func (*LimitExceededException) HasMessage ¶
func (e *LimitExceededException) HasMessage() bool
type MemberPermissions ¶
type MemberPermissions string
const ( MemberPermissionsRead_write MemberPermissions = "read-write" MemberPermissionsRead_only MemberPermissions = "read-only" )
Enum values for MemberPermissions
type NotFoundException ¶
The target resource cannot be found.
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
func (*NotFoundException) GetClassName ¶
func (e *NotFoundException) GetClassName() string
func (*NotFoundException) GetCode ¶
func (e *NotFoundException) GetCode() int32
func (*NotFoundException) GetMessage ¶
func (e *NotFoundException) GetMessage() string
func (*NotFoundException) HasClassName ¶
func (e *NotFoundException) HasClassName() bool
func (*NotFoundException) HasCode ¶
func (e *NotFoundException) HasCode() bool
func (*NotFoundException) HasMessage ¶
func (e *NotFoundException) HasMessage() bool
type Permissions ¶
type Permissions string
const ( PermissionsOwner Permissions = "owner" PermissionsRead_write Permissions = "read-write" PermissionsRead_only Permissions = "read-only" )
Enum values for Permissions
type Tag ¶
type Tag struct { // The value part of a tag. Value *string // The name part of a tag. Key *string }
Metadata that is associated with AWS resources. In particular, a name-value pair that can be associated with an AWS Cloud9 development environment. There are two types of tags: user tags and system tags. A user tag is created by the user. A system tag is automatically created by AWS services. A system tag is prefixed with "aws:" and cannot be modified by the user.
type TooManyRequestsException ¶
Too many service requests were made over the given time period.
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
func (*TooManyRequestsException) GetClassName ¶
func (e *TooManyRequestsException) GetClassName() string
func (*TooManyRequestsException) GetCode ¶
func (e *TooManyRequestsException) GetCode() int32
func (*TooManyRequestsException) GetMessage ¶
func (e *TooManyRequestsException) GetMessage() string
func (*TooManyRequestsException) HasClassName ¶
func (e *TooManyRequestsException) HasClassName() bool
func (*TooManyRequestsException) HasCode ¶
func (e *TooManyRequestsException) HasCode() bool
func (*TooManyRequestsException) HasMessage ¶
func (e *TooManyRequestsException) HasMessage() bool
Source Files ¶
- Version
- v0.1.0
- Published
- Sep 29, 2020
- Platform
- darwin/amd64
- Imports
- 4 packages
- Last checked
- 3 hours ago –
Tools for package owners.