Documentation
¶
Index ¶
- type ComplexError
- type ComplexNestedErrorData
- type CustomCodeError
- type FooEnum
- type GreetingStruct
- type IntegerEnum
- type InvalidGreeting
- type NestedStructWithList
- type NestedStructWithMap
- type RecursiveXmlShapesOutputNested1
- type RecursiveXmlShapesOutputNested2
- type StructArg
- type StructureListMember
- type XmlNamespaceNested
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ComplexError ¶
type ComplexError struct { Message *string ErrorCodeOverride *string TopLevel *string Nested *ComplexNestedErrorData // contains filtered or unexported fields }
This error is thrown when a request is invalid.
func (*ComplexError) Error ¶
func (e *ComplexError) Error() string
func (*ComplexError) ErrorCode ¶
func (e *ComplexError) ErrorCode() string
func (*ComplexError) ErrorFault ¶
func (e *ComplexError) ErrorFault() smithy.ErrorFault
func (*ComplexError) ErrorMessage ¶
func (e *ComplexError) ErrorMessage() string
type ComplexNestedErrorData ¶
type ComplexNestedErrorData struct { Foo *string // contains filtered or unexported fields }
type CustomCodeError ¶
type CustomCodeError struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
func (*CustomCodeError) Error ¶
func (e *CustomCodeError) Error() string
func (*CustomCodeError) ErrorCode ¶
func (e *CustomCodeError) ErrorCode() string
func (*CustomCodeError) ErrorFault ¶
func (e *CustomCodeError) ErrorFault() smithy.ErrorFault
func (*CustomCodeError) ErrorMessage ¶
func (e *CustomCodeError) ErrorMessage() string
type FooEnum ¶
type FooEnum string
type GreetingStruct ¶
type GreetingStruct struct { Hi *string // contains filtered or unexported fields }
type IntegerEnum ¶
type IntegerEnum = int32
const ( IntegerEnumA IntegerEnum = 1 IntegerEnumB IntegerEnum = 2 IntegerEnumC IntegerEnum = 3 )
Enum values for IntegerEnum
type InvalidGreeting ¶
type InvalidGreeting struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
This error is thrown when an invalid greeting value is provided.
func (*InvalidGreeting) Error ¶
func (e *InvalidGreeting) Error() string
func (*InvalidGreeting) ErrorCode ¶
func (e *InvalidGreeting) ErrorCode() string
func (*InvalidGreeting) ErrorFault ¶
func (e *InvalidGreeting) ErrorFault() smithy.ErrorFault
func (*InvalidGreeting) ErrorMessage ¶
func (e *InvalidGreeting) ErrorMessage() string
type NestedStructWithList ¶
type NestedStructWithList struct { ListArg []string // contains filtered or unexported fields }
type NestedStructWithMap ¶
type RecursiveXmlShapesOutputNested1 ¶
type RecursiveXmlShapesOutputNested1 struct { Foo *string Nested *RecursiveXmlShapesOutputNested2 // contains filtered or unexported fields }
type RecursiveXmlShapesOutputNested2 ¶
type RecursiveXmlShapesOutputNested2 struct { Bar *string RecursiveMember *RecursiveXmlShapesOutputNested1 // contains filtered or unexported fields }
type StructArg ¶
type StructureListMember ¶
Source Files
¶
- enums.go
- errors.go
- types.go
Click to show internal directories.
Click to hide internal directories.