@effect-aws/client-ec2 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @effect-aws/client-ec2
2
2
 
3
+ ## 1.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#75](https://github.com/floydspace/effect-aws/pull/75) [`9dc170d`](https://github.com/floydspace/effect-aws/commit/9dc170d975c04888bbc7ca7b241b4b5265668fb5) Thanks [@godu](https://github.com/godu)! - export the HttpHandlerOptions type
8
+
3
9
  ## 1.2.0
4
10
 
5
11
  ### Minor Changes
@@ -5,7 +5,10 @@ import { type AcceptAddressTransferCommandInput, type AcceptAddressTransferComma
5
5
  import { Effect, Layer } from "effect";
6
6
  import { EC2ClientInstance } from "./EC2ClientInstance";
7
7
  import { EC2ServiceError, SdkError } from "./Errors";
8
- interface HttpHandlerOptions {
8
+ /**
9
+ * @since 1.2.1
10
+ */
11
+ export interface HttpHandlerOptions {
9
12
  /**
10
13
  * The maximum time in milliseconds that the connection phase of a request
11
14
  * may take before the connection attempt is abandoned.
@@ -3097,9 +3100,6 @@ declare const EC2Service_base: import("effect/Context").TagClass<EC2Service, "@e
3097
3100
  readonly updateSecurityGroupRuleDescriptionsIngress: (args: UpdateSecurityGroupRuleDescriptionsIngressCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateSecurityGroupRuleDescriptionsIngressCommandOutput, EC2ServiceError | SdkError, EC2Service>;
3098
3101
  readonly withdrawByoipCidr: (args: WithdrawByoipCidrCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<WithdrawByoipCidrCommandOutput, EC2ServiceError | SdkError, EC2Service>;
3099
3102
  } & {
3100
- /**
3101
- * @see {@link DeleteTransitGatewayPrefixListReferenceCommand}
3102
- */
3103
3103
  use: <X>(body: (_: EC2Service$) => X) => X extends Effect.Effect<infer A, infer E, infer R> ? Effect.Effect<A, E, R | EC2Service> : Effect.Effect<X, never, EC2Service>;
3104
3104
  };
3105
3105
  /**