SqlParameter

public struct SqlParameter : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name of the parameter.

    Declaration

    Swift

    public let name: String?
  • A hint that specifies the correct object type for data type mapping. Values: DECIMAL - The corresponding String parameter value is sent as an object of DECIMAL type to the database. TIMESTAMP - The corresponding String parameter value is sent as an object of TIMESTAMP type to the database. The accepted format is YYYY-MM-DD HH:MM:SS[.FFF]. TIME - The corresponding String parameter value is sent as an object of TIME type to the database. The accepted format is HH:MM:SS[.FFF]. DATE - The corresponding String parameter value is sent as an object of DATE type to the database. The accepted format is YYYY-MM-DD.

    Declaration

    Swift

    public let typeHint: TypeHint?
  • The value of the parameter.

    Declaration

    Swift

    public let value: Field?
  • Undocumented

    Declaration

    Swift

    public init(name: String? = nil, typeHint: TypeHint? = nil, value: Field? = nil)