package types
import "github.com/aws/aws-sdk-go-v2/service/outposts/types"
Index ¶
- type AccessDeniedException
- func (e *AccessDeniedException) Error() string
- func (e *AccessDeniedException) ErrorCode() string
- func (e *AccessDeniedException) ErrorFault() smithy.ErrorFault
- func (e *AccessDeniedException) ErrorMessage() string
- type ConflictException
- func (e *ConflictException) Error() string
- func (e *ConflictException) ErrorCode() string
- func (e *ConflictException) ErrorFault() smithy.ErrorFault
- func (e *ConflictException) ErrorMessage() string
- type InstanceTypeItem
- type InternalServerException
- func (e *InternalServerException) Error() string
- func (e *InternalServerException) ErrorCode() string
- func (e *InternalServerException) ErrorFault() smithy.ErrorFault
- func (e *InternalServerException) ErrorMessage() string
- type LineItem
- type LineItemRequest
- type NotFoundException
- func (e *NotFoundException) Error() string
- func (e *NotFoundException) ErrorCode() string
- func (e *NotFoundException) ErrorFault() smithy.ErrorFault
- func (e *NotFoundException) ErrorMessage() string
- type Order
- type OrderStatus
- type Outpost
- type PaymentOption
- type PaymentTerm
- type ResourceType
- type ServiceQuotaExceededException
- func (e *ServiceQuotaExceededException) Error() string
- func (e *ServiceQuotaExceededException) ErrorCode() string
- func (e *ServiceQuotaExceededException) ErrorFault() smithy.ErrorFault
- func (e *ServiceQuotaExceededException) ErrorMessage() string
- type Site
- type ValidationException
Types ¶
type AccessDeniedException ¶
type AccessDeniedException struct { Message *string // contains filtered or unexported fields }
You do not have permission to perform this operation.
func (*AccessDeniedException) Error ¶
func (e *AccessDeniedException) Error() string
func (*AccessDeniedException) ErrorCode ¶
func (e *AccessDeniedException) ErrorCode() string
func (*AccessDeniedException) ErrorFault ¶
func (e *AccessDeniedException) ErrorFault() smithy.ErrorFault
func (*AccessDeniedException) ErrorMessage ¶
func (e *AccessDeniedException) ErrorMessage() string
type ConflictException ¶
type ConflictException struct { Message *string ResourceId *string ResourceType ResourceType // contains filtered or unexported fields }
Updating or deleting this resource can cause an inconsistent state.
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
type InstanceTypeItem ¶
type InstanceTypeItem struct { // The instance type. InstanceType *string // contains filtered or unexported fields }
Information about an instance type.
type InternalServerException ¶
type InternalServerException struct { Message *string // contains filtered or unexported fields }
An internal error has occurred.
func (*InternalServerException) Error ¶
func (e *InternalServerException) Error() string
func (*InternalServerException) ErrorCode ¶
func (e *InternalServerException) ErrorCode() string
func (*InternalServerException) ErrorFault ¶
func (e *InternalServerException) ErrorFault() smithy.ErrorFault
func (*InternalServerException) ErrorMessage ¶
func (e *InternalServerException) ErrorMessage() string
type LineItem ¶
type LineItem struct { // The ID of the catalog item. CatalogItemId *string // The ID of the line item. LineItemId *string // The quantity of the line item. Quantity int32 // The status of the line item. Status *string // contains filtered or unexported fields }
Information about a line item.
type LineItemRequest ¶
type LineItemRequest struct { // The ID of the catalog item. CatalogItemId *string // The quantity of a line item request. Quantity int32 // contains filtered or unexported fields }
Information about a line item request.
type NotFoundException ¶
type NotFoundException struct { Message *string // contains filtered or unexported fields }
The specified request is not valid.
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 Order ¶
type Order struct { // The line items for the order LineItems []LineItem // The fulfillment date of the order. OrderFulfilledDate *time.Time // The ID of the order. OrderId *string // The submission date for the order. OrderSubmissionDate *time.Time // The ID of the Outpost. OutpostId *string // The payment option for the order. PaymentOption PaymentOption // The status of the order Status OrderStatus // contains filtered or unexported fields }
Information about an order.
type OrderStatus ¶
type OrderStatus string
const ( OrderStatusReceived OrderStatus = "RECEIVED" OrderStatusPending OrderStatus = "PENDING" OrderStatusProcessing OrderStatus = "PROCESSING" OrderStatusInstalling OrderStatus = "INSTALLING" OrderStatusFulfilled OrderStatus = "FULFILLED" OrderStatusCancelled OrderStatus = "CANCELLED" )
Enum values for OrderStatus
func (OrderStatus) Values ¶
func (OrderStatus) Values() []OrderStatus
Values returns all known values for OrderStatus. 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 Outpost ¶
type Outpost struct { // The Availability Zone. AvailabilityZone *string // The ID of the Availability Zone. AvailabilityZoneId *string // The description of the Outpost. Description *string // The life cycle status. LifeCycleStatus *string // The name of the Outpost. Name *string // The Amazon Resource Name (ARN) of the Outpost. OutpostArn *string // The ID of the Outpost. OutpostId *string // The AWS account ID of the Outpost owner. OwnerId *string // The Amazon Resource Name (ARN) of the site. SiteArn *string // The ID of the site. SiteId *string // The Outpost tags. Tags map[string]string // contains filtered or unexported fields }
Information about an Outpost.
type PaymentOption ¶
type PaymentOption string
const ( PaymentOptionAllUpfront PaymentOption = "ALL_UPFRONT" PaymentOptionNoUpfront PaymentOption = "NO_UPFRONT" PaymentOptionPartialUpfront PaymentOption = "PARTIAL_UPFRONT" )
Enum values for PaymentOption
func (PaymentOption) Values ¶
func (PaymentOption) Values() []PaymentOption
Values returns all known values for PaymentOption. 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 PaymentTerm ¶
type PaymentTerm string
const ( PaymentTermThreeYears PaymentTerm = "THREE_YEARS" )
Enum values for PaymentTerm
func (PaymentTerm) Values ¶
func (PaymentTerm) Values() []PaymentTerm
Values returns all known values for PaymentTerm. 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 ResourceType ¶
type ResourceType string
const ( ResourceTypeOutpost ResourceType = "OUTPOST" )
Enum values for ResourceType
func (ResourceType) Values ¶
func (ResourceType) Values() []ResourceType
Values returns all known values for ResourceType. 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 ServiceQuotaExceededException ¶
type ServiceQuotaExceededException struct { Message *string // contains filtered or unexported fields }
You have exceeded a service quota.
func (*ServiceQuotaExceededException) Error ¶
func (e *ServiceQuotaExceededException) Error() string
func (*ServiceQuotaExceededException) ErrorCode ¶
func (e *ServiceQuotaExceededException) ErrorCode() string
func (*ServiceQuotaExceededException) ErrorFault ¶
func (e *ServiceQuotaExceededException) ErrorFault() smithy.ErrorFault
func (*ServiceQuotaExceededException) ErrorMessage ¶
func (e *ServiceQuotaExceededException) ErrorMessage() string
type Site ¶
type Site struct { // The ID of the AWS account. AccountId *string // The description of the site. Description *string // The name of the site. Name *string // The Amazon Resource Name (ARN) of the site. SiteArn *string // The ID of the site. SiteId *string // The site tags. Tags map[string]string // contains filtered or unexported fields }
Information about a site.
type ValidationException ¶
type ValidationException struct { Message *string // contains filtered or unexported fields }
A parameter is not valid.
func (*ValidationException) Error ¶
func (e *ValidationException) Error() string
func (*ValidationException) ErrorCode ¶
func (e *ValidationException) ErrorCode() string
func (*ValidationException) ErrorFault ¶
func (e *ValidationException) ErrorFault() smithy.ErrorFault
func (*ValidationException) ErrorMessage ¶
func (e *ValidationException) ErrorMessage() string
Source Files ¶
- Version
- v1.10.1
- Published
- Nov 19, 2021
- Platform
- windows/amd64
- Imports
- 4 packages
- Last checked
- 1 week ago –
Tools for package owners.