types

package
v1.6.3 Latest Latest
Warning

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

Go to latest
Published: Sep 10, 2025 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 AccessDeniedException

type AccessDeniedException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The request was denied because of insufficient access or permissions. Check with an administrator to verify your permissions.

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 ColorScheme

type ColorScheme string
const (
	ColorSchemeLight ColorScheme = "Light"
	ColorSchemeDark  ColorScheme = "Dark"
)

Enum values for ColorScheme

func (ColorScheme) Values

func (ColorScheme) Values() []ColorScheme

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

type InternalServerException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The request processing has failed because of an unknown error, exception or failure.

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 LabelSize added in v1.2.0

type LabelSize string
const (
	LabelSizeSmall LabelSize = "Small"
	LabelSizeLarge LabelSize = "Large"
)

Enum values for LabelSize

func (LabelSize) Values added in v1.2.0

func (LabelSize) Values() []LabelSize

Values returns all known values for LabelSize. 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 MapFeatureMode added in v1.2.0

type MapFeatureMode string
const (
	MapFeatureModeEnabled  MapFeatureMode = "Enabled"
	MapFeatureModeDisabled MapFeatureMode = "Disabled"
)

Enum values for MapFeatureMode

func (MapFeatureMode) Values added in v1.2.0

func (MapFeatureMode) Values() []MapFeatureMode

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

type MapStyle string
const (
	MapStyleStandard   MapStyle = "Standard"
	MapStyleMonochrome MapStyle = "Monochrome"
	MapStyleHybrid     MapStyle = "Hybrid"
	MapStyleSatellite  MapStyle = "Satellite"
)

Enum values for MapStyle

func (MapStyle) Values

func (MapStyle) Values() []MapStyle

Values returns all known values for MapStyle. 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 ResourceNotFoundException added in v1.6.0

type ResourceNotFoundException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Exception thrown when the associated resource could not be found.

func (*ResourceNotFoundException) Error added in v1.6.0

func (e *ResourceNotFoundException) Error() string

func (*ResourceNotFoundException) ErrorCode added in v1.6.0

func (e *ResourceNotFoundException) ErrorCode() string

func (*ResourceNotFoundException) ErrorFault added in v1.6.0

func (*ResourceNotFoundException) ErrorMessage added in v1.6.0

func (e *ResourceNotFoundException) ErrorMessage() string

type ScaleBarUnit

type ScaleBarUnit string
const (
	ScaleBarUnitKilometers      ScaleBarUnit = "Kilometers"
	ScaleBarUnitKilometersMiles ScaleBarUnit = "KilometersMiles"
	ScaleBarUnitMiles           ScaleBarUnit = "Miles"
	ScaleBarUnitMilesKilometers ScaleBarUnit = "MilesKilometers"
)

Enum values for ScaleBarUnit

func (ScaleBarUnit) Values

func (ScaleBarUnit) Values() []ScaleBarUnit

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

type StaticMapStyle string
const (
	StaticMapStyleSatellite StaticMapStyle = "Satellite"
	StaticMapStyleStandard  StaticMapStyle = "Standard"
)

Enum values for StaticMapStyle

func (StaticMapStyle) Values

func (StaticMapStyle) Values() []StaticMapStyle

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

type ThrottlingException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The 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 ValidationException

type ValidationException struct {
	Message *string

	ErrorCodeOverride *string

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

The input 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 {

	// The error message.
	//
	// This member is required.
	Message *string

	// The name of the resource.
	//
	// This member is required.
	Name *string
	// contains filtered or unexported fields
}

The input fails to satisfy the constraints specified by the Amazon Location service.

type ValidationExceptionReason

type ValidationExceptionReason string
const (
	// No such operation is supported.
	ValidationExceptionReasonUnknownOperation ValidationExceptionReason = "UnknownOperation"
	// The required input is missing.
	ValidationExceptionReasonMissing ValidationExceptionReason = "Missing"
	// The input cannot be parsed. For example a required JSON document, ARN
	// identifier, date value, or numeric field cannot be parsed.
	ValidationExceptionReasonCannotParse ValidationExceptionReason = "CannotParse"
	// The input is present and parsable, but it is otherwise invalid. For example, a
	// required numeric argument is outside the allowed range.
	ValidationExceptionReasonFieldValidationFailed ValidationExceptionReason = "FieldValidationFailed"
	// The input is invalid but no more specific reason is applicable.
	ValidationExceptionReasonOther ValidationExceptionReason = "Other"
	// No such field is supported.
	ValidationExceptionReasonUnknownField ValidationExceptionReason = "UnknownField"
)

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.

type Variant

type Variant string
const (
	VariantDefault Variant = "Default"
)

Enum values for Variant

func (Variant) Values

func (Variant) Values() []Variant

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