types

package
v0.0.0-...-68f2935 Latest Latest
Warning

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

Go to latest
Published: May 24, 2024 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AcceptanceType

type AcceptanceType string
const (
	// Do not require explicit click-through acceptance of the Term associated with
	// this Report.
	AcceptanceTypePassthrough AcceptanceType = "PASSTHROUGH"
	// Require explicit click-through acceptance of the Term associated with this
	// Report.
	AcceptanceTypeExplicit AcceptanceType = "EXPLICIT"
)

Enum values for AcceptanceType

func (AcceptanceType) Values

func (AcceptanceType) Values() []AcceptanceType

Values returns all known values for AcceptanceType. 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 AccessDeniedException

type AccessDeniedException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

User does not have sufficient access to perform this action.

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 AccountSettings

type AccountSettings struct {

	// Notification subscription status of the customer.
	NotificationSubscriptionStatus NotificationSubscriptionStatus
	// contains filtered or unexported fields
}

Account settings for the customer.

type ConflictException

type ConflictException struct {
	Message *string

	ErrorCodeOverride *string

	ResourceId   *string
	ResourceType *string
	// contains filtered or unexported fields
}

Request to create/modify content would result in a conflict.

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 InternalServerException

type InternalServerException struct {
	Message *string

	ErrorCodeOverride *string

	RetryAfterSeconds *int32
	// contains filtered or unexported fields
}

An unknown server exception 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 NotificationSubscriptionStatus

type NotificationSubscriptionStatus string
const (
	// The account is subscribed for notification.
	NotificationSubscriptionStatusSubscribed NotificationSubscriptionStatus = "SUBSCRIBED"
	// The account is not subscribed for notification.
	NotificationSubscriptionStatusNotSubscribed NotificationSubscriptionStatus = "NOT_SUBSCRIBED"
)

Enum values for NotificationSubscriptionStatus

func (NotificationSubscriptionStatus) Values

Values returns all known values for NotificationSubscriptionStatus. 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 PublishedState

type PublishedState string
const (
	// The resource is published for consumption.
	PublishedStatePublished PublishedState = "PUBLISHED"
	// The resource is not published for consumption.
	PublishedStateUnpublished PublishedState = "UNPUBLISHED"
)

Enum values for PublishedState

func (PublishedState) Values

func (PublishedState) Values() []PublishedState

Values returns all known values for PublishedState. 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 ReportDetail

type ReportDetail struct {

	// Acceptance type for report.
	AcceptanceType AcceptanceType

	// ARN for the report resource.
	Arn *string

	// Category for the report resource.
	Category *string

	// Associated company name for the report resource.
	CompanyName *string

	// Timestamp indicating when the report resource was created.
	CreatedAt *time.Time

	// Timestamp indicating when the report resource was deleted.
	DeletedAt *time.Time

	// Description for the report resource.
	Description *string

	// Unique resource ID for the report resource.
	Id *string

	// Timestamp indicating when the report resource was last modified.
	LastModifiedAt *time.Time

	// Name for the report resource.
	Name *string

	// Timestamp indicating the report resource effective end.
	PeriodEnd *time.Time

	// Timestamp indicating the report resource effective start.
	PeriodStart *time.Time

	// Associated product name for the report resource.
	ProductName *string

	// Sequence number to enforce optimistic locking.
	SequenceNumber *int64

	// Series for the report resource.
	Series *string

	// Current state of the report resource
	State PublishedState

	// The message associated with the current upload state.
	StatusMessage *string

	// Unique resource ARN for term resource.
	TermArn *string

	// The current state of the document upload.
	UploadState UploadState

	// Version for the report resource.
	Version *int64
	// contains filtered or unexported fields
}

Full detail for report resource metadata.

type ReportSummary

type ReportSummary struct {

	// ARN for the report resource.
	Arn *string

	// Category for the report resource.
	Category *string

	// Associated company name for the report resource.
	CompanyName *string

	// Description for the report resource.
	Description *string

	// Unique resource ID for the report resource.
	Id *string

	// Name for the report resource.
	Name *string

	// Timestamp indicating the report resource effective end.
	PeriodEnd *time.Time

	// Timestamp indicating the report resource effective start.
	PeriodStart *time.Time

	// Associated product name for the report resource.
	ProductName *string

	// Series for the report resource.
	Series *string

	// Current state of the report resource.
	State PublishedState

	// The message associated with the current upload state.
	StatusMessage *string

	// The current state of the document upload.
	UploadState UploadState

	// Version for the report resource.
	Version *int64
	// contains filtered or unexported fields
}

Summary for report resource.

type ResourceNotFoundException

type ResourceNotFoundException struct {
	Message *string

	ErrorCodeOverride *string

	ResourceId   *string
	ResourceType *string
	// contains filtered or unexported fields
}

Request references a resource which does not exist.

func (*ResourceNotFoundException) Error

func (e *ResourceNotFoundException) Error() string

func (*ResourceNotFoundException) ErrorCode

func (e *ResourceNotFoundException) ErrorCode() string

func (*ResourceNotFoundException) ErrorFault

func (*ResourceNotFoundException) ErrorMessage

func (e *ResourceNotFoundException) ErrorMessage() string

type ServiceQuotaExceededException

type ServiceQuotaExceededException struct {
	Message *string

	ErrorCodeOverride *string

	ResourceId   *string
	ResourceType *string
	ServiceCode  *string
	QuotaCode    *string
	// contains filtered or unexported fields
}

Request would cause a service quota to be exceeded.

func (*ServiceQuotaExceededException) Error

func (*ServiceQuotaExceededException) ErrorCode

func (e *ServiceQuotaExceededException) ErrorCode() string

func (*ServiceQuotaExceededException) ErrorFault

func (*ServiceQuotaExceededException) ErrorMessage

func (e *ServiceQuotaExceededException) ErrorMessage() string

type ThrottlingException

type ThrottlingException struct {
	Message *string

	ErrorCodeOverride *string

	ServiceCode       *string
	QuotaCode         *string
	RetryAfterSeconds *int32
	// contains filtered or unexported fields
}

Request was denied due to request throttling.

func (*ThrottlingException) Error

func (e *ThrottlingException) Error() string

func (*ThrottlingException) ErrorCode

func (e *ThrottlingException) ErrorCode() string

func (*ThrottlingException) ErrorFault

func (e *ThrottlingException) ErrorFault() smithy.ErrorFault

func (*ThrottlingException) ErrorMessage

func (e *ThrottlingException) ErrorMessage() string

type UploadState

type UploadState string
const (
	UploadStateProcessing UploadState = "PROCESSING"
	UploadStateComplete   UploadState = "COMPLETE"
	UploadStateFailed     UploadState = "FAILED"
	UploadStateFault      UploadState = "FAULT"
)

Enum values for UploadState

func (UploadState) Values

func (UploadState) Values() []UploadState

Values returns all known values for UploadState. 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 ValidationException

type ValidationException struct {
	Message *string

	ErrorCodeOverride *string

	Reason    ValidationExceptionReason
	FieldList []ValidationExceptionField
	// contains filtered or unexported fields
}

Request fails to satisfy the constraints specified by an AWS service.

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

type ValidationExceptionField

type ValidationExceptionField struct {

	// Message describing why the field failed validation.
	//
	// This member is required.
	Message *string

	// Name of validation exception.
	//
	// This member is required.
	Name *string
	// contains filtered or unexported fields
}

Validation exception message and name.

type ValidationExceptionReason

type ValidationExceptionReason string
const (
	ValidationExceptionReasonUnknownOperation      ValidationExceptionReason = "unknownOperation"
	ValidationExceptionReasonCannotParse           ValidationExceptionReason = "cannotParse"
	ValidationExceptionReasonFieldValidationFailed ValidationExceptionReason = "fieldValidationFailed"
	ValidationExceptionReasonInvalidToken          ValidationExceptionReason = "invalidToken"
	ValidationExceptionReasonOther                 ValidationExceptionReason = "other"
)

Enum values for ValidationExceptionReason

func (ValidationExceptionReason) Values

Values returns all known values for ValidationExceptionReason. 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.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL
JackTT - Gopher 🇻🇳