Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@aws-sdk/client-mwaa

Package Overview
Dependencies
Maintainers
5
Versions
357
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/client-mwaa - npm Package Compare versions

Comparing version 3.577.0 to 3.578.0

6

dist-cjs/index.js

@@ -426,3 +426,5 @@ "use strict";

LoggingConfiguration: (_) => (0, import_smithy_client._json)(_),
MaxWebservers: [],
MaxWorkers: [],
MinWebservers: [],
MinWorkers: [],

@@ -629,3 +631,5 @@ NetworkConfiguration: (_) => (0, import_smithy_client._json)(_),

LoggingConfiguration: (_) => (0, import_smithy_client._json)(_),
MaxWebservers: [],
MaxWorkers: [],
MinWebservers: [],
MinWorkers: [],

@@ -918,3 +922,5 @@ NetworkConfiguration: (_) => (0, import_smithy_client._json)(_),

LoggingConfiguration: import_smithy_client._json,
MaxWebservers: import_smithy_client.expectInt32,
MaxWorkers: import_smithy_client.expectInt32,
MinWebservers: import_smithy_client.expectInt32,
MinWorkers: import_smithy_client.expectInt32,

@@ -921,0 +927,0 @@ Name: import_smithy_client.expectString,

@@ -41,3 +41,5 @@ import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody } from "@aws-sdk/core";

LoggingConfiguration: (_) => _json(_),
MaxWebservers: [],
MaxWorkers: [],
MinWebservers: [],
MinWorkers: [],

@@ -238,3 +240,5 @@ NetworkConfiguration: (_) => _json(_),

LoggingConfiguration: (_) => _json(_),
MaxWebservers: [],
MaxWorkers: [],
MinWebservers: [],
MinWorkers: [],

@@ -528,3 +532,5 @@ NetworkConfiguration: (_) => _json(_),

LoggingConfiguration: _json,
MaxWebservers: __expectInt32,
MaxWorkers: __expectInt32,
MinWebservers: __expectInt32,
MinWorkers: __expectInt32,

@@ -531,0 +537,0 @@ Name: __expectString,

2

dist-types/commands/CreateEnvironmentCommand.d.ts

@@ -92,2 +92,4 @@ import { Command as $Command } from "@smithy/smithy-client";

* EndpointManagement: "STRING_VALUE",
* MinWebservers: Number("int"),
* MaxWebservers: Number("int"),
* };

@@ -94,0 +96,0 @@ * const command = new CreateEnvironmentCommand(input);

@@ -120,2 +120,4 @@ import { Command as $Command } from "@smithy/smithy-client";

* // EndpointManagement: "STRING_VALUE",
* // MinWebservers: Number("int"),
* // MaxWebservers: Number("int"),
* // },

@@ -122,0 +124,0 @@ * // };

@@ -84,2 +84,4 @@ import { Command as $Command } from "@smithy/smithy-client";

* Schedulers: Number("int"),
* MinWebservers: Number("int"),
* MaxWebservers: Number("int"),
* };

@@ -86,0 +88,0 @@ * const command = new UpdateEnvironmentCommand(input);

@@ -237,3 +237,3 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";

/**
* <p>The environment class type. Valid values: <code>mw1.small</code>, <code>mw1.medium</code>, <code>mw1.large</code>. For more information, see <a href="https://docs.aws.amazon.com/mwaa/latest/userguide/environment-class.html">Amazon MWAA environment class</a>.</p>
* <p>The environment class type. Valid values: <code>mw1.small</code>, <code>mw1.medium</code>, <code>mw1.large</code>, <code>mw1.xlarge</code>, and <code>mw1.2xlarge</code>. For more information, see <a href="https://docs.aws.amazon.com/mwaa/latest/userguide/environment-class.html">Amazon MWAA environment class</a>.</p>
* @public

@@ -290,6 +290,6 @@ */

* <li>
* <p>v2 - Accepts between 2 to 5. Defaults to 2.</p>
* <p>v2 - Accepts between <code>2</code> to <code>5</code>. Defaults to <code>2</code>.</p>
* </li>
* <li>
* <p>v1 - Accepts 1.</p>
* <p>v1 - Accepts <code>1</code>.</p>
* </li>

@@ -308,2 +308,27 @@ * </ul>

EndpointManagement?: EndpointManagement;
/**
* <p>
* The minimum number of web servers that you want to run in your environment.
* Amazon MWAA scales the number of Apache Airflow web servers up to the number you specify for <code>MaxWebservers</code>
* when you interact with your Apache Airflow environment using Apache Airflow REST API, or
* the Apache Airflow CLI. As the transaction-per-second rate, and the network load, decrease,
* Amazon MWAA disposes of the additional web servers, and scales down to the number set in <code>MinxWebserers</code>.
* </p>
* <p>Valid values: Accepts between <code>2</code> and <code>5</code>. Defaults to <code>2</code>.</p>
* @public
*/
MinWebservers?: number;
/**
* <p>
* The maximum number of web servers that you want to run in your environment.
* Amazon MWAA scales the number of Apache Airflow web servers up to the number you specify for <code>MaxWebservers</code>
* when you interact with your Apache Airflow environment using Apache Airflow REST API, or
* the Apache Airflow CLI. For example, in scenarios where your workload requires network calls to the Apache Airflow REST API with a high transaction-per-second (TPS)
* rate, Amazon MWAA will increase the number of web servers up to the number set in <code>MaxWebserers</code>. As TPS rates decrease
* Amazon MWAA disposes of the additional web servers, and scales down to the number set in <code>MinxWebserers</code>.
* </p>
* <p>Valid values: Accepts between <code>2</code> and <code>5</code>. Defaults to <code>2</code>.</p>
* @public
*/
MaxWebservers?: number;
}

@@ -637,3 +662,3 @@ /**

* <p>The Apache Airflow version on your environment.</p>
* <p>Valid values: <code>1.10.12</code>, <code>2.0.2</code>, <code>2.2.2</code>, <code>2.4.3</code>, <code>2.5.1</code>, <code>2.6.3</code>, <code>2.7.2</code>.</p>
* <p>Valid values: <code>1.10.12</code>, <code>2.0.2</code>, <code>2.2.2</code>, <code>2.4.3</code>, <code>2.5.1</code>, <code>2.6.3</code>, <code>2.7.2</code>, <code>2.8.1</code>.</p>
* @public

@@ -719,3 +744,3 @@ */

/**
* <p>The environment class type. Valid values: <code>mw1.small</code>, <code>mw1.medium</code>, <code>mw1.large</code>. For more information, see <a href="https://docs.aws.amazon.com/mwaa/latest/userguide/environment-class.html">Amazon MWAA environment class</a>.</p>
* <p>The environment class type. Valid values: <code>mw1.small</code>, <code>mw1.medium</code>, <code>mw1.large</code>, <code>mw1.xlarge</code>, and <code>mw1.2xlarge</code>. For more information, see <a href="https://docs.aws.amazon.com/mwaa/latest/userguide/environment-class.html">Amazon MWAA environment class</a>.</p>
* @public

@@ -791,2 +816,27 @@ */

EndpointManagement?: EndpointManagement;
/**
* <p>
* The minimum number of web servers that you want to run in your environment.
* Amazon MWAA scales the number of Apache Airflow web servers up to the number you specify for <code>MaxWebservers</code>
* when you interact with your Apache Airflow environment using Apache Airflow REST API, or
* the Apache Airflow CLI. As the transaction-per-second rate, and the network load, decrease,
* Amazon MWAA disposes of the additional web servers, and scales down to the number set in <code>MinxWebserers</code>.
* </p>
* <p>Valid values: Accepts between <code>2</code> and <code>5</code>. Defaults to <code>2</code>.</p>
* @public
*/
MinWebservers?: number;
/**
* <p>
* The maximum number of web servers that you want to run in your environment.
* Amazon MWAA scales the number of Apache Airflow web servers up to the number you specify for <code>MaxWebservers</code>
* when you interact with your Apache Airflow environment using Apache Airflow REST API, or
* the Apache Airflow CLI. For example, in scenarios where your workload requires network calls to the Apache Airflow REST API with a high transaction-per-second (TPS)
* rate, Amazon MWAA will increase the number of web servers up to the number set in <code>MaxWebserers</code>. As TPS rates decrease
* Amazon MWAA disposes of the additional web servers, and scales down to the number set in <code>MinxWebserers</code>.
* </p>
* <p>Valid values: Accepts between <code>2</code> and <code>5</code>. Defaults to <code>2</code>.</p>
* @public
*/
MaxWebservers?: number;
}

@@ -1086,3 +1136,3 @@ /**

* your resources, see <a href="https://docs.aws.amazon.com/mwaa/latest/userguide/upgrading-environment.html">Upgrading an Amazon MWAA environment</a>.</p>
* <p>Valid values: <code>1.10.12</code>, <code>2.0.2</code>, <code>2.2.2</code>, <code>2.4.3</code>, <code>2.5.1</code>, <code>2.6.3</code>, <code>2.7.2</code>.</p>
* <p>Valid values: <code>1.10.12</code>, <code>2.0.2</code>, <code>2.2.2</code>, <code>2.4.3</code>, <code>2.5.1</code>, <code>2.6.3</code>, <code>2.7.2</code>, <code>2.8.1</code>.</p>
* @public

@@ -1154,3 +1204,3 @@ */

/**
* <p>The environment class type. Valid values: <code>mw1.small</code>, <code>mw1.medium</code>, <code>mw1.large</code>. For more information, see <a href="https://docs.aws.amazon.com/mwaa/latest/userguide/environment-class.html">Amazon MWAA environment class</a>.</p>
* <p>The environment class type. Valid values: <code>mw1.small</code>, <code>mw1.medium</code>, <code>mw1.large</code>, <code>mw1.xlarge</code>, and <code>mw1.2xlarge</code>. For more information, see <a href="https://docs.aws.amazon.com/mwaa/latest/userguide/environment-class.html">Amazon MWAA environment class</a>.</p>
* @public

@@ -1194,2 +1244,27 @@ */

Schedulers?: number;
/**
* <p>
* The minimum number of web servers that you want to run in your environment.
* Amazon MWAA scales the number of Apache Airflow web servers up to the number you specify for <code>MaxWebservers</code>
* when you interact with your Apache Airflow environment using Apache Airflow REST API, or
* the Apache Airflow CLI. As the transaction-per-second rate, and the network load, decrease,
* Amazon MWAA disposes of the additional web servers, and scales down to the number set in <code>MinxWebserers</code>.
* </p>
* <p>Valid values: Accepts between <code>2</code> and <code>5</code>. Defaults to <code>2</code>.</p>
* @public
*/
MinWebservers?: number;
/**
* <p>
* The maximum number of web servers that you want to run in your environment.
* Amazon MWAA scales the number of Apache Airflow web servers up to the number you specify for <code>MaxWebservers</code>
* when you interact with your Apache Airflow environment using Apache Airflow REST API, or
* the Apache Airflow CLI. For example, in scenarios where your workload requires network calls to the Apache Airflow REST API with a high transaction-per-second (TPS)
* rate, Amazon MWAA will increase the number of web servers up to the number set in <code>MaxWebserers</code>. As TPS rates decrease
* Amazon MWAA disposes of the additional web servers, and scales down to the number set in <code>MinxWebserers</code>.
* </p>
* <p>Valid values: Accepts between <code>2</code> and <code>5</code>. Defaults to <code>2</code>.</p>
* @public
*/
MaxWebservers?: number;
}

@@ -1196,0 +1271,0 @@ /**

@@ -84,2 +84,4 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";

EndpointManagement?: EndpointManagement;
MinWebservers?: number;
MaxWebservers?: number;
}

@@ -196,2 +198,4 @@ export interface CreateEnvironmentOutput {

EndpointManagement?: EndpointManagement;
MinWebservers?: number;
MaxWebservers?: number;
}

@@ -302,2 +306,4 @@ export interface GetEnvironmentOutput {

Schedulers?: number;
MinWebservers?: number;
MaxWebservers?: number;
}

@@ -304,0 +310,0 @@ export interface UpdateEnvironmentOutput {

2

package.json
{
"name": "@aws-sdk/client-mwaa",
"description": "AWS SDK for JavaScript Mwaa Client for Node.js, Browser and React Native",
"version": "3.577.0",
"version": "3.578.0",
"scripts": {

@@ -6,0 +6,0 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc