ex-aws / ex_aws

A flexible, easy to use set of clients AWS APIs for Elixir
https://hex.pm/packages/ex_aws
MIT License
1.26k stars 521 forks source link

Feature/enable fsx #949

Closed spunkedy closed 1 year ago

spunkedy commented 1 year ago

This enables the FSx endpoints, including FIPs endpoints for federal.

The endpoint list comes from:

FSx docs

Tested the configuration change with:

%ExAws.Operation.JSON{
      http_method: :POST,
      headers: [
        {"x-amz-target", "AWSSimbaAPIService_v20180301.DescribeFileSystems"},
        {"content-type", "application/x-amz-json-1.1"}
      ],
      path: "/",
      params: %{},
      data: %{},
      service: :fsx
    }

based upon this spec

spunkedy commented 1 year ago

this will close #950

bernardd commented 1 year ago

Thanks @spunkedy!

spunkedy commented 1 year ago

Absolutely, thanks for the quick turn around.