Documentation
¶
Index ¶
- type AccessDeniedException
- type ColorScheme
- type InternalServerException
- type LabelSize
- type MapFeatureMode
- type MapStyle
- type ResourceNotFoundException
- type ScaleBarUnit
- type StaticMapStyle
- type ThrottlingException
- type ValidationException
- type ValidationExceptionField
- type ValidationExceptionReason
- type Variant
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 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
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 (e *ResourceNotFoundException) ErrorFault() smithy.ErrorFault
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 ¶
func (ValidationExceptionReason) Values() []ValidationExceptionReason
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.