Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix lexv1 AlternativeIntentsSerializationError #4264

Closed
wants to merge 4 commits into from

Commits on Jan 28, 2022

  1. Fix lexv1 AlternativeIntentsSerializationError

    Deserialisation of the `X-Amz-Lex-Alternative-Intents` header fails because it
    is a JSON array, but `aws.JSONValue` is a `map[string]interface{}`. Fix this by
    treating `X-Amz-Lex-Alternative-Intents` as a base64 encoded string, which will
    not be decoded and unmarshalled by the SDK. The caller of the SDK must manually
    base64 decode and JSON unmarshal the field, in order to use the contents.
    chrbsg committed Jan 28, 2022
    Configuration menu
    Copy the full SHA
    cc57162 View commit details
    Browse the repository at this point in the history
  2. change module to chrbsg

    chrbsg committed Jan 28, 2022
    Configuration menu
    Copy the full SHA
    ad7a62c View commit details
    Browse the repository at this point in the history
  3. Add go.mod replace

    chrbsg committed Jan 28, 2022
    Configuration menu
    Copy the full SHA
    92567e2 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2022

  1. Comment out PostContentOutput.ActiveContexts

    ActiveContexts is also a JSON array.
    chrbsg committed Jan 31, 2022
    Configuration menu
    Copy the full SHA
    626d14d View commit details
    Browse the repository at this point in the history