aws-sdk-mwaa 1.71.0 → 1.72.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mwaa/client.rb +51 -49
- data/lib/aws-sdk-mwaa/client_api.rb +7 -0
- data/lib/aws-sdk-mwaa/errors.rb +16 -0
- data/lib/aws-sdk-mwaa/types.rb +142 -125
- data/lib/aws-sdk-mwaa.rb +1 -1
- data/sig/client.rbs +2 -2
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +8 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b7c0b7c47e1045e3e8a215bed77eaddf271967684464dfd37c34dc5da2f58c50
|
|
4
|
+
data.tar.gz: cf2ef745030d53298474f404209df461392f425cdeaa03ad29950406de143b1b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 388652d83c63785a23aabccffe894329c1e7c09df7defcd9da754b5959d88beb99677fe5b60b25cdefca6f0cf78de91faa12db373e914a492ac69f3d5d91374e
|
|
7
|
+
data.tar.gz: daf3c7488fc9f9cef221b1b356166cefa6c966250726948f36c192bf6b70bfb95cf614cea74b0583d1f31f8f520d58f0d5bacf809ddcdea644015c31fa0d594b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.72.0 (2026-05-06)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon MWAA now supports a PublicAndPrivate webserver access mode. The Airflow web server is accessible over both public and private endpoints, enabling workers in VPCs without internet access to reach the Task API privately while retaining public access to the Airflow UI.
|
|
8
|
+
|
|
4
9
|
1.71.0 (2026-03-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.72.0
|
data/lib/aws-sdk-mwaa/client.rb
CHANGED
|
@@ -525,7 +525,7 @@ module Aws::MWAA
|
|
|
525
525
|
# Access Management (IAM) role that grants MWAA permission to access
|
|
526
526
|
# Amazon Web Services services and resources used by your environment.
|
|
527
527
|
# For example, `arn:aws:iam::123456789:role/my-execution-role`. For more
|
|
528
|
-
# information,
|
|
528
|
+
# information, refer to [Amazon MWAA Execution role][1].
|
|
529
529
|
#
|
|
530
530
|
#
|
|
531
531
|
#
|
|
@@ -535,7 +535,7 @@ module Aws::MWAA
|
|
|
535
535
|
# The Amazon Resource Name (ARN) of the Amazon S3 bucket where your DAG
|
|
536
536
|
# code and supporting files are stored. For example,
|
|
537
537
|
# `arn:aws:s3:::my-airflow-bucket-unique-name`. For more information,
|
|
538
|
-
#
|
|
538
|
+
# refer to [Create an Amazon S3 bucket for Amazon MWAA][1].
|
|
539
539
|
#
|
|
540
540
|
#
|
|
541
541
|
#
|
|
@@ -543,7 +543,7 @@ module Aws::MWAA
|
|
|
543
543
|
#
|
|
544
544
|
# @option params [required, String] :dag_s3_path
|
|
545
545
|
# The relative path to the DAGs folder on your Amazon S3 bucket. For
|
|
546
|
-
# example, `dags`. For more information,
|
|
546
|
+
# example, `dags`. For more information, refer to [Adding or updating
|
|
547
547
|
# DAGs][1].
|
|
548
548
|
#
|
|
549
549
|
#
|
|
@@ -553,8 +553,8 @@ module Aws::MWAA
|
|
|
553
553
|
# @option params [required, Types::NetworkConfiguration] :network_configuration
|
|
554
554
|
# The VPC networking components used to secure and enable network
|
|
555
555
|
# traffic between the Amazon Web Services resources for your
|
|
556
|
-
# environment. For more information,
|
|
557
|
-
# MWAA][1].
|
|
556
|
+
# environment. For more information, refer to [About networking on
|
|
557
|
+
# Amazon MWAA][1].
|
|
558
558
|
#
|
|
559
559
|
#
|
|
560
560
|
#
|
|
@@ -563,7 +563,7 @@ module Aws::MWAA
|
|
|
563
563
|
# @option params [String] :plugins_s3_path
|
|
564
564
|
# The relative path to the `plugins.zip` file on your Amazon S3 bucket.
|
|
565
565
|
# For example, `plugins.zip`. If specified, then the `plugins.zip`
|
|
566
|
-
# version is required. For more information,
|
|
566
|
+
# version is required. For more information, refer to [Installing custom
|
|
567
567
|
# plugins][1].
|
|
568
568
|
#
|
|
569
569
|
#
|
|
@@ -573,7 +573,7 @@ module Aws::MWAA
|
|
|
573
573
|
# @option params [String] :plugins_s3_object_version
|
|
574
574
|
# The version of the plugins.zip file on your Amazon S3 bucket. You must
|
|
575
575
|
# specify a version each time a plugins.zip file is updated. For more
|
|
576
|
-
# information,
|
|
576
|
+
# information, refer to [How S3 Versioning works][1].
|
|
577
577
|
#
|
|
578
578
|
#
|
|
579
579
|
#
|
|
@@ -582,7 +582,7 @@ module Aws::MWAA
|
|
|
582
582
|
# @option params [String] :requirements_s3_path
|
|
583
583
|
# The relative path to the `requirements.txt` file on your Amazon S3
|
|
584
584
|
# bucket. For example, `requirements.txt`. If specified, then a version
|
|
585
|
-
# is required. For more information,
|
|
585
|
+
# is required. For more information, refer to [Installing Python
|
|
586
586
|
# dependencies][1].
|
|
587
587
|
#
|
|
588
588
|
#
|
|
@@ -592,7 +592,7 @@ module Aws::MWAA
|
|
|
592
592
|
# @option params [String] :requirements_s3_object_version
|
|
593
593
|
# The version of the `requirements.txt` file on your Amazon S3 bucket.
|
|
594
594
|
# You must specify a version each time a requirements.txt file is
|
|
595
|
-
# updated. For more information,
|
|
595
|
+
# updated. For more information, refer to [How S3 Versioning works][1].
|
|
596
596
|
#
|
|
597
597
|
#
|
|
598
598
|
#
|
|
@@ -605,7 +605,7 @@ module Aws::MWAA
|
|
|
605
605
|
# Amazon MWAA runs the script as your environment starts, and before
|
|
606
606
|
# running the Apache Airflow process. You can use this script to install
|
|
607
607
|
# dependencies, modify Apache Airflow configuration options, and set
|
|
608
|
-
# environment variables. For more information,
|
|
608
|
+
# environment variables. For more information, refer to [Using a startup
|
|
609
609
|
# script][1].
|
|
610
610
|
#
|
|
611
611
|
#
|
|
@@ -622,7 +622,7 @@ module Aws::MWAA
|
|
|
622
622
|
#
|
|
623
623
|
# `3sL4kqtJlcpXroDTDmJ+rmSpXd3dIbrHY+MTRCxf3vjVBH40Nr8X8gdRQBpUMLUo`
|
|
624
624
|
#
|
|
625
|
-
# For more information,
|
|
625
|
+
# For more information, refer to [Using a startup script][2].
|
|
626
626
|
#
|
|
627
627
|
#
|
|
628
628
|
#
|
|
@@ -632,7 +632,7 @@ module Aws::MWAA
|
|
|
632
632
|
# @option params [Hash<String,String>] :airflow_configuration_options
|
|
633
633
|
# A list of key-value pairs containing the Apache Airflow configuration
|
|
634
634
|
# options you want to attach to your environment. For more information,
|
|
635
|
-
#
|
|
635
|
+
# refer to [Apache Airflow configuration options][1].
|
|
636
636
|
#
|
|
637
637
|
#
|
|
638
638
|
#
|
|
@@ -641,7 +641,7 @@ module Aws::MWAA
|
|
|
641
641
|
# @option params [String] :environment_class
|
|
642
642
|
# The environment class type. Valid values: `mw1.micro`, `mw1.small`,
|
|
643
643
|
# `mw1.medium`, `mw1.large`, `mw1.xlarge`, and `mw1.2xlarge`. For more
|
|
644
|
-
# information,
|
|
644
|
+
# information, refer to [Amazon MWAA environment class][1].
|
|
645
645
|
#
|
|
646
646
|
#
|
|
647
647
|
#
|
|
@@ -658,8 +658,8 @@ module Aws::MWAA
|
|
|
658
658
|
# @option params [String] :kms_key
|
|
659
659
|
# The Amazon Web Services Key Management Service (KMS) key to encrypt
|
|
660
660
|
# the data in your environment. You can use an Amazon Web Services owned
|
|
661
|
-
# CMK, or a Customer managed CMK (advanced). For more information,
|
|
662
|
-
# [Create an Amazon MWAA environment][1].
|
|
661
|
+
# CMK, or a Customer managed CMK (advanced). For more information, refer
|
|
662
|
+
# to [Create an Amazon MWAA environment][1].
|
|
663
663
|
#
|
|
664
664
|
#
|
|
665
665
|
#
|
|
@@ -668,11 +668,11 @@ module Aws::MWAA
|
|
|
668
668
|
# @option params [String] :airflow_version
|
|
669
669
|
# The Apache Airflow version for your environment. If no value is
|
|
670
670
|
# specified, it defaults to the latest version. For more information,
|
|
671
|
-
#
|
|
672
|
-
# Airflow (Amazon MWAA)][1].
|
|
671
|
+
# refer to [Apache Airflow versions on Amazon Managed Workflows for
|
|
672
|
+
# Apache Airflow (Amazon MWAA)][1].
|
|
673
673
|
#
|
|
674
|
-
# Valid values: `
|
|
675
|
-
#
|
|
674
|
+
# Valid values: `2.7.2`, `2.8.1`, `2.9.2`, `2.10.1`, `2.10.3`, `2.11.0`,
|
|
675
|
+
# and `3.0.6`.
|
|
676
676
|
#
|
|
677
677
|
#
|
|
678
678
|
#
|
|
@@ -690,7 +690,7 @@ module Aws::MWAA
|
|
|
690
690
|
#
|
|
691
691
|
# @option params [Hash<String,String>] :tags
|
|
692
692
|
# The key-value tag pairs you want to associate to your environment. For
|
|
693
|
-
# example, `"Environment": "Staging"`. For more information,
|
|
693
|
+
# example, `"Environment": "Staging"`. For more information, refer to
|
|
694
694
|
# [Tagging Amazon Web Services resources][1].
|
|
695
695
|
#
|
|
696
696
|
#
|
|
@@ -699,7 +699,7 @@ module Aws::MWAA
|
|
|
699
699
|
#
|
|
700
700
|
# @option params [String] :webserver_access_mode
|
|
701
701
|
# Defines the access mode for the Apache Airflow *web server*. For more
|
|
702
|
-
# information,
|
|
702
|
+
# information, refer to [Apache Airflow access modes][1].
|
|
703
703
|
#
|
|
704
704
|
#
|
|
705
705
|
#
|
|
@@ -821,7 +821,7 @@ module Aws::MWAA
|
|
|
821
821
|
# tags: {
|
|
822
822
|
# "TagKey" => "TagValue",
|
|
823
823
|
# },
|
|
824
|
-
# webserver_access_mode: "PRIVATE_ONLY", # accepts PRIVATE_ONLY, PUBLIC_ONLY
|
|
824
|
+
# webserver_access_mode: "PRIVATE_ONLY", # accepts PRIVATE_ONLY, PUBLIC_ONLY, PUBLIC_AND_PRIVATE
|
|
825
825
|
# min_workers: 1,
|
|
826
826
|
# schedulers: 1,
|
|
827
827
|
# endpoint_management: "CUSTOMER", # accepts CUSTOMER, SERVICE
|
|
@@ -974,7 +974,7 @@ module Aws::MWAA
|
|
|
974
974
|
# resp.environment.weekly_maintenance_window_start #=> String
|
|
975
975
|
# resp.environment.tags #=> Hash
|
|
976
976
|
# resp.environment.tags["TagKey"] #=> String
|
|
977
|
-
# resp.environment.webserver_access_mode #=> String, one of "PRIVATE_ONLY", "PUBLIC_ONLY"
|
|
977
|
+
# resp.environment.webserver_access_mode #=> String, one of "PRIVATE_ONLY", "PUBLIC_ONLY", "PUBLIC_AND_PRIVATE"
|
|
978
978
|
# resp.environment.min_workers #=> Integer
|
|
979
979
|
# resp.environment.schedulers #=> Integer
|
|
980
980
|
# resp.environment.webserver_vpc_endpoint_service #=> String
|
|
@@ -1200,7 +1200,7 @@ module Aws::MWAA
|
|
|
1200
1200
|
#
|
|
1201
1201
|
# @option params [required, Hash<String,String>] :tags
|
|
1202
1202
|
# The key-value tag pairs you want to associate to your environment. For
|
|
1203
|
-
# example, `"Environment": "Staging"`. For more information,
|
|
1203
|
+
# example, `"Environment": "Staging"`. For more information, refer to
|
|
1204
1204
|
# [Tagging Amazon Web Services resources][1].
|
|
1205
1205
|
#
|
|
1206
1206
|
#
|
|
@@ -1270,7 +1270,7 @@ module Aws::MWAA
|
|
|
1270
1270
|
# allows MWAA to access Amazon Web Services resources in your
|
|
1271
1271
|
# environment. For example,
|
|
1272
1272
|
# `arn:aws:iam::123456789:role/my-execution-role`. For more information,
|
|
1273
|
-
#
|
|
1273
|
+
# refer to [Amazon MWAA Execution role][1].
|
|
1274
1274
|
#
|
|
1275
1275
|
#
|
|
1276
1276
|
#
|
|
@@ -1279,7 +1279,7 @@ module Aws::MWAA
|
|
|
1279
1279
|
# @option params [Hash<String,String>] :airflow_configuration_options
|
|
1280
1280
|
# A list of key-value pairs containing the Apache Airflow configuration
|
|
1281
1281
|
# options you want to attach to your environment. For more information,
|
|
1282
|
-
#
|
|
1282
|
+
# refer to [Apache Airflow configuration options][1].
|
|
1283
1283
|
#
|
|
1284
1284
|
#
|
|
1285
1285
|
#
|
|
@@ -1288,16 +1288,17 @@ module Aws::MWAA
|
|
|
1288
1288
|
# @option params [String] :airflow_version
|
|
1289
1289
|
# The Apache Airflow version for your environment. To upgrade your
|
|
1290
1290
|
# environment, specify a newer version of Apache Airflow supported by
|
|
1291
|
-
# Amazon MWAA.
|
|
1291
|
+
# Amazon MWAA. To downgrade your environment, specify an older version
|
|
1292
|
+
# of Apache Airflow supported by Amazon MWAA.
|
|
1292
1293
|
#
|
|
1293
|
-
# Before you upgrade an environment, make sure your
|
|
1294
|
-
# plugins, and other resources used in your
|
|
1295
|
-
# with the new Apache Airflow version. For more
|
|
1296
|
-
# updating your resources, see [Upgrading
|
|
1297
|
-
# environment][1].
|
|
1294
|
+
# Before you upgrade or downgrade an environment, make sure your
|
|
1295
|
+
# requirements, DAGs, plugins, and other resources used in your
|
|
1296
|
+
# workflows are compatible with the new Apache Airflow version. For more
|
|
1297
|
+
# information about updating your resources, see [Upgrading and
|
|
1298
|
+
# downgrading an Amazon MWAA environment][1].
|
|
1298
1299
|
#
|
|
1299
|
-
# Valid values: `
|
|
1300
|
-
#
|
|
1300
|
+
# Valid values: `2.7.2`, `2.8.1`, `2.9.2`, `2.10.1`, `2.10.3`, `2.11.0`,
|
|
1301
|
+
# and `3.0.6`.
|
|
1301
1302
|
#
|
|
1302
1303
|
#
|
|
1303
1304
|
#
|
|
@@ -1305,7 +1306,7 @@ module Aws::MWAA
|
|
|
1305
1306
|
#
|
|
1306
1307
|
# @option params [String] :dag_s3_path
|
|
1307
1308
|
# The relative path to the DAGs folder on your Amazon S3 bucket. For
|
|
1308
|
-
# example, `dags`. For more information,
|
|
1309
|
+
# example, `dags`. For more information, refer to [Adding or updating
|
|
1309
1310
|
# DAGs][1].
|
|
1310
1311
|
#
|
|
1311
1312
|
#
|
|
@@ -1315,7 +1316,7 @@ module Aws::MWAA
|
|
|
1315
1316
|
# @option params [String] :environment_class
|
|
1316
1317
|
# The environment class type. Valid values: `mw1.micro`, `mw1.small`,
|
|
1317
1318
|
# `mw1.medium`, `mw1.large`, `mw1.xlarge`, and `mw1.2xlarge`. For more
|
|
1318
|
-
# information,
|
|
1319
|
+
# information, refer to [Amazon MWAA environment class][1].
|
|
1319
1320
|
#
|
|
1320
1321
|
#
|
|
1321
1322
|
#
|
|
@@ -1386,8 +1387,8 @@ module Aws::MWAA
|
|
|
1386
1387
|
# @option params [Types::UpdateNetworkConfigurationInput] :network_configuration
|
|
1387
1388
|
# The VPC networking components used to secure and enable network
|
|
1388
1389
|
# traffic between the Amazon Web Services resources for your
|
|
1389
|
-
# environment. For more information,
|
|
1390
|
-
# MWAA][1].
|
|
1390
|
+
# environment. For more information, refer to [About networking on
|
|
1391
|
+
# Amazon MWAA][1].
|
|
1391
1392
|
#
|
|
1392
1393
|
#
|
|
1393
1394
|
#
|
|
@@ -1396,7 +1397,8 @@ module Aws::MWAA
|
|
|
1396
1397
|
# @option params [String] :plugins_s3_path
|
|
1397
1398
|
# The relative path to the `plugins.zip` file on your Amazon S3 bucket.
|
|
1398
1399
|
# For example, `plugins.zip`. If specified, then the plugins.zip version
|
|
1399
|
-
# is required. For more information,
|
|
1400
|
+
# is required. For more information, refer to [Installing custom
|
|
1401
|
+
# plugins][1].
|
|
1400
1402
|
#
|
|
1401
1403
|
#
|
|
1402
1404
|
#
|
|
@@ -1405,7 +1407,7 @@ module Aws::MWAA
|
|
|
1405
1407
|
# @option params [String] :plugins_s3_object_version
|
|
1406
1408
|
# The version of the plugins.zip file on your Amazon S3 bucket. You must
|
|
1407
1409
|
# specify a version each time a `plugins.zip` file is updated. For more
|
|
1408
|
-
# information,
|
|
1410
|
+
# information, refer to [How S3 Versioning works][1].
|
|
1409
1411
|
#
|
|
1410
1412
|
#
|
|
1411
1413
|
#
|
|
@@ -1414,7 +1416,7 @@ module Aws::MWAA
|
|
|
1414
1416
|
# @option params [String] :requirements_s3_path
|
|
1415
1417
|
# The relative path to the `requirements.txt` file on your Amazon S3
|
|
1416
1418
|
# bucket. For example, `requirements.txt`. If specified, then a file
|
|
1417
|
-
# version is required. For more information,
|
|
1419
|
+
# version is required. For more information, refer to [Installing Python
|
|
1418
1420
|
# dependencies][1].
|
|
1419
1421
|
#
|
|
1420
1422
|
#
|
|
@@ -1424,7 +1426,7 @@ module Aws::MWAA
|
|
|
1424
1426
|
# @option params [String] :requirements_s3_object_version
|
|
1425
1427
|
# The version of the requirements.txt file on your Amazon S3 bucket. You
|
|
1426
1428
|
# must specify a version each time a `requirements.txt` file is updated.
|
|
1427
|
-
# For more information,
|
|
1429
|
+
# For more information, refer to [How S3 Versioning works][1].
|
|
1428
1430
|
#
|
|
1429
1431
|
#
|
|
1430
1432
|
#
|
|
@@ -1438,7 +1440,7 @@ module Aws::MWAA
|
|
|
1438
1440
|
# The Amazon Resource Name (ARN) of the Amazon S3 bucket where your DAG
|
|
1439
1441
|
# code and supporting files are stored. For example,
|
|
1440
1442
|
# `arn:aws:s3:::my-airflow-bucket-unique-name`. For more information,
|
|
1441
|
-
#
|
|
1443
|
+
# refer to [Create an Amazon S3 bucket for Amazon MWAA][1].
|
|
1442
1444
|
#
|
|
1443
1445
|
#
|
|
1444
1446
|
#
|
|
@@ -1451,7 +1453,7 @@ module Aws::MWAA
|
|
|
1451
1453
|
# Amazon MWAA runs the script as your environment starts, and before
|
|
1452
1454
|
# running the Apache Airflow process. You can use this script to install
|
|
1453
1455
|
# dependencies, modify Apache Airflow configuration options, and set
|
|
1454
|
-
# environment variables. For more information,
|
|
1456
|
+
# environment variables. For more information, refer to [Using a startup
|
|
1455
1457
|
# script][1].
|
|
1456
1458
|
#
|
|
1457
1459
|
#
|
|
@@ -1468,7 +1470,7 @@ module Aws::MWAA
|
|
|
1468
1470
|
#
|
|
1469
1471
|
# `3sL4kqtJlcpXroDTDmJ+rmSpXd3dIbrHY+MTRCxf3vjVBH40Nr8X8gdRQBpUMLUo`
|
|
1470
1472
|
#
|
|
1471
|
-
# For more information,
|
|
1473
|
+
# For more information, refer to [Using a startup script][2].
|
|
1472
1474
|
#
|
|
1473
1475
|
#
|
|
1474
1476
|
#
|
|
@@ -1476,8 +1478,8 @@ module Aws::MWAA
|
|
|
1476
1478
|
# [2]: https://docs.aws.amazon.com/mwaa/latest/userguide/using-startup-script.html
|
|
1477
1479
|
#
|
|
1478
1480
|
# @option params [String] :webserver_access_mode
|
|
1479
|
-
# The Apache Airflow *Web server* access mode. For more information,
|
|
1480
|
-
# [Apache Airflow access modes][1].
|
|
1481
|
+
# The Apache Airflow *Web server* access mode. For more information,
|
|
1482
|
+
# refer to [Apache Airflow access modes][1].
|
|
1481
1483
|
#
|
|
1482
1484
|
#
|
|
1483
1485
|
#
|
|
@@ -1543,7 +1545,7 @@ module Aws::MWAA
|
|
|
1543
1545
|
# source_bucket_arn: "S3BucketArn",
|
|
1544
1546
|
# startup_script_s3_path: "RelativePath",
|
|
1545
1547
|
# startup_script_s3_object_version: "S3ObjectVersion",
|
|
1546
|
-
# webserver_access_mode: "PRIVATE_ONLY", # accepts PRIVATE_ONLY, PUBLIC_ONLY
|
|
1548
|
+
# webserver_access_mode: "PRIVATE_ONLY", # accepts PRIVATE_ONLY, PUBLIC_ONLY, PUBLIC_AND_PRIVATE
|
|
1547
1549
|
# weekly_maintenance_window_start: "WeeklyMaintenanceWindowStart",
|
|
1548
1550
|
# })
|
|
1549
1551
|
#
|
|
@@ -1578,7 +1580,7 @@ module Aws::MWAA
|
|
|
1578
1580
|
tracer: tracer
|
|
1579
1581
|
)
|
|
1580
1582
|
context[:gem_name] = 'aws-sdk-mwaa'
|
|
1581
|
-
context[:gem_version] = '1.
|
|
1583
|
+
context[:gem_version] = '1.72.0'
|
|
1582
1584
|
Seahorse::Client::Request.new(handlers, context)
|
|
1583
1585
|
end
|
|
1584
1586
|
|
|
@@ -89,6 +89,7 @@ module Aws::MWAA
|
|
|
89
89
|
Schedulers = Shapes::IntegerShape.new(name: 'Schedulers')
|
|
90
90
|
SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
|
|
91
91
|
SecurityGroupList = Shapes::ListShape.new(name: 'SecurityGroupList')
|
|
92
|
+
ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
|
|
92
93
|
StatisticSet = Shapes::StructureShape.new(name: 'StatisticSet')
|
|
93
94
|
String = Shapes::StringShape.new(name: 'String')
|
|
94
95
|
SubnetId = Shapes::StringShape.new(name: 'SubnetId')
|
|
@@ -316,6 +317,9 @@ module Aws::MWAA
|
|
|
316
317
|
|
|
317
318
|
SecurityGroupList.member = Shapes::ShapeRef.new(shape: SecurityGroupId)
|
|
318
319
|
|
|
320
|
+
ServiceUnavailableException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
321
|
+
ServiceUnavailableException.struct_class = Types::ServiceUnavailableException
|
|
322
|
+
|
|
319
323
|
StatisticSet.add_member(:sample_count, Shapes::ShapeRef.new(shape: Integer, location_name: "SampleCount"))
|
|
320
324
|
StatisticSet.add_member(:sum, Shapes::ShapeRef.new(shape: Double, location_name: "Sum"))
|
|
321
325
|
StatisticSet.add_member(:minimum, Shapes::ShapeRef.new(shape: Double, location_name: "Minimum"))
|
|
@@ -419,6 +423,7 @@ module Aws::MWAA
|
|
|
419
423
|
}
|
|
420
424
|
o.input = Shapes::ShapeRef.new(shape: CreateEnvironmentInput)
|
|
421
425
|
o.output = Shapes::ShapeRef.new(shape: CreateEnvironmentOutput)
|
|
426
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
422
427
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
423
428
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
424
429
|
end)
|
|
@@ -447,6 +452,7 @@ module Aws::MWAA
|
|
|
447
452
|
}
|
|
448
453
|
o.input = Shapes::ShapeRef.new(shape: DeleteEnvironmentInput)
|
|
449
454
|
o.output = Shapes::ShapeRef.new(shape: DeleteEnvironmentOutput)
|
|
455
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
450
456
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
451
457
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
452
458
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
@@ -567,6 +573,7 @@ module Aws::MWAA
|
|
|
567
573
|
}
|
|
568
574
|
o.input = Shapes::ShapeRef.new(shape: UpdateEnvironmentInput)
|
|
569
575
|
o.output = Shapes::ShapeRef.new(shape: UpdateEnvironmentOutput)
|
|
576
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
570
577
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
571
578
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
572
579
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
data/lib/aws-sdk-mwaa/errors.rb
CHANGED
|
@@ -32,6 +32,7 @@ module Aws::MWAA
|
|
|
32
32
|
# * {ResourceNotFoundException}
|
|
33
33
|
# * {RestApiClientException}
|
|
34
34
|
# * {RestApiServerException}
|
|
35
|
+
# * {ServiceUnavailableException}
|
|
35
36
|
# * {ValidationException}
|
|
36
37
|
#
|
|
37
38
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
|
@@ -125,6 +126,21 @@ module Aws::MWAA
|
|
|
125
126
|
end
|
|
126
127
|
end
|
|
127
128
|
|
|
129
|
+
class ServiceUnavailableException < ServiceError
|
|
130
|
+
|
|
131
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
132
|
+
# @param [String] message
|
|
133
|
+
# @param [Aws::MWAA::Types::ServiceUnavailableException] data
|
|
134
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
135
|
+
super(context, message, data)
|
|
136
|
+
end
|
|
137
|
+
|
|
138
|
+
# @return [String]
|
|
139
|
+
def message
|
|
140
|
+
@message || @data[:message]
|
|
141
|
+
end
|
|
142
|
+
end
|
|
143
|
+
|
|
128
144
|
class ValidationException < ServiceError
|
|
129
145
|
|
|
130
146
|
# @param [Seahorse::Client::RequestContext] context
|
data/lib/aws-sdk-mwaa/types.rb
CHANGED
|
@@ -61,8 +61,8 @@ module Aws::MWAA
|
|
|
61
61
|
|
|
62
62
|
# This section contains the Amazon Managed Workflows for Apache Airflow
|
|
63
63
|
# (Amazon MWAA) API reference documentation to create an environment.
|
|
64
|
-
# For more information,
|
|
65
|
-
# for Apache Airflow][1].
|
|
64
|
+
# For more information, refer to [Get started with Amazon Managed
|
|
65
|
+
# Workflows for Apache Airflow][1].
|
|
66
66
|
#
|
|
67
67
|
#
|
|
68
68
|
#
|
|
@@ -80,7 +80,7 @@ module Aws::MWAA
|
|
|
80
80
|
# access Amazon Web Services services and resources used by your
|
|
81
81
|
# environment. For example,
|
|
82
82
|
# `arn:aws:iam::123456789:role/my-execution-role`. For more
|
|
83
|
-
# information,
|
|
83
|
+
# information, refer to [Amazon MWAA Execution role][1].
|
|
84
84
|
#
|
|
85
85
|
#
|
|
86
86
|
#
|
|
@@ -91,7 +91,7 @@ module Aws::MWAA
|
|
|
91
91
|
# The Amazon Resource Name (ARN) of the Amazon S3 bucket where your
|
|
92
92
|
# DAG code and supporting files are stored. For example,
|
|
93
93
|
# `arn:aws:s3:::my-airflow-bucket-unique-name`. For more information,
|
|
94
|
-
#
|
|
94
|
+
# refer to [Create an Amazon S3 bucket for Amazon MWAA][1].
|
|
95
95
|
#
|
|
96
96
|
#
|
|
97
97
|
#
|
|
@@ -100,7 +100,7 @@ module Aws::MWAA
|
|
|
100
100
|
#
|
|
101
101
|
# @!attribute [rw] dag_s3_path
|
|
102
102
|
# The relative path to the DAGs folder on your Amazon S3 bucket. For
|
|
103
|
-
# example, `dags`. For more information,
|
|
103
|
+
# example, `dags`. For more information, refer to [Adding or updating
|
|
104
104
|
# DAGs][1].
|
|
105
105
|
#
|
|
106
106
|
#
|
|
@@ -111,8 +111,8 @@ module Aws::MWAA
|
|
|
111
111
|
# @!attribute [rw] network_configuration
|
|
112
112
|
# The VPC networking components used to secure and enable network
|
|
113
113
|
# traffic between the Amazon Web Services resources for your
|
|
114
|
-
# environment. For more information,
|
|
115
|
-
# MWAA][1].
|
|
114
|
+
# environment. For more information, refer to [About networking on
|
|
115
|
+
# Amazon MWAA][1].
|
|
116
116
|
#
|
|
117
117
|
#
|
|
118
118
|
#
|
|
@@ -122,7 +122,7 @@ module Aws::MWAA
|
|
|
122
122
|
# @!attribute [rw] plugins_s3_path
|
|
123
123
|
# The relative path to the `plugins.zip` file on your Amazon S3
|
|
124
124
|
# bucket. For example, `plugins.zip`. If specified, then the
|
|
125
|
-
# `plugins.zip` version is required. For more information,
|
|
125
|
+
# `plugins.zip` version is required. For more information, refer to
|
|
126
126
|
# [Installing custom plugins][1].
|
|
127
127
|
#
|
|
128
128
|
#
|
|
@@ -133,7 +133,7 @@ module Aws::MWAA
|
|
|
133
133
|
# @!attribute [rw] plugins_s3_object_version
|
|
134
134
|
# The version of the plugins.zip file on your Amazon S3 bucket. You
|
|
135
135
|
# must specify a version each time a plugins.zip file is updated. For
|
|
136
|
-
# more information,
|
|
136
|
+
# more information, refer to [How S3 Versioning works][1].
|
|
137
137
|
#
|
|
138
138
|
#
|
|
139
139
|
#
|
|
@@ -143,8 +143,8 @@ module Aws::MWAA
|
|
|
143
143
|
# @!attribute [rw] requirements_s3_path
|
|
144
144
|
# The relative path to the `requirements.txt` file on your Amazon S3
|
|
145
145
|
# bucket. For example, `requirements.txt`. If specified, then a
|
|
146
|
-
# version is required. For more information,
|
|
147
|
-
# dependencies][1].
|
|
146
|
+
# version is required. For more information, refer to [Installing
|
|
147
|
+
# Python dependencies][1].
|
|
148
148
|
#
|
|
149
149
|
#
|
|
150
150
|
#
|
|
@@ -154,7 +154,8 @@ module Aws::MWAA
|
|
|
154
154
|
# @!attribute [rw] requirements_s3_object_version
|
|
155
155
|
# The version of the `requirements.txt` file on your Amazon S3 bucket.
|
|
156
156
|
# You must specify a version each time a requirements.txt file is
|
|
157
|
-
# updated. For more information,
|
|
157
|
+
# updated. For more information, refer to [How S3 Versioning
|
|
158
|
+
# works][1].
|
|
158
159
|
#
|
|
159
160
|
#
|
|
160
161
|
#
|
|
@@ -168,8 +169,8 @@ module Aws::MWAA
|
|
|
168
169
|
# Amazon MWAA runs the script as your environment starts, and before
|
|
169
170
|
# running the Apache Airflow process. You can use this script to
|
|
170
171
|
# install dependencies, modify Apache Airflow configuration options,
|
|
171
|
-
# and set environment variables. For more information,
|
|
172
|
-
# startup script][1].
|
|
172
|
+
# and set environment variables. For more information, refer to [Using
|
|
173
|
+
# a startup script][1].
|
|
173
174
|
#
|
|
174
175
|
#
|
|
175
176
|
#
|
|
@@ -186,7 +187,7 @@ module Aws::MWAA
|
|
|
186
187
|
#
|
|
187
188
|
# `3sL4kqtJlcpXroDTDmJ+rmSpXd3dIbrHY+MTRCxf3vjVBH40Nr8X8gdRQBpUMLUo`
|
|
188
189
|
#
|
|
189
|
-
# For more information,
|
|
190
|
+
# For more information, refer to [Using a startup script][2].
|
|
190
191
|
#
|
|
191
192
|
#
|
|
192
193
|
#
|
|
@@ -197,7 +198,8 @@ module Aws::MWAA
|
|
|
197
198
|
# @!attribute [rw] airflow_configuration_options
|
|
198
199
|
# A list of key-value pairs containing the Apache Airflow
|
|
199
200
|
# configuration options you want to attach to your environment. For
|
|
200
|
-
# more information,
|
|
201
|
+
# more information, refer to [Apache Airflow configuration
|
|
202
|
+
# options][1].
|
|
201
203
|
#
|
|
202
204
|
#
|
|
203
205
|
#
|
|
@@ -207,7 +209,7 @@ module Aws::MWAA
|
|
|
207
209
|
# @!attribute [rw] environment_class
|
|
208
210
|
# The environment class type. Valid values: `mw1.micro`, `mw1.small`,
|
|
209
211
|
# `mw1.medium`, `mw1.large`, `mw1.xlarge`, and `mw1.2xlarge`. For more
|
|
210
|
-
# information,
|
|
212
|
+
# information, refer to [Amazon MWAA environment class][1].
|
|
211
213
|
#
|
|
212
214
|
#
|
|
213
215
|
#
|
|
@@ -228,7 +230,7 @@ module Aws::MWAA
|
|
|
228
230
|
# The Amazon Web Services Key Management Service (KMS) key to encrypt
|
|
229
231
|
# the data in your environment. You can use an Amazon Web Services
|
|
230
232
|
# owned CMK, or a Customer managed CMK (advanced). For more
|
|
231
|
-
# information,
|
|
233
|
+
# information, refer to [Create an Amazon MWAA environment][1].
|
|
232
234
|
#
|
|
233
235
|
#
|
|
234
236
|
#
|
|
@@ -238,11 +240,11 @@ module Aws::MWAA
|
|
|
238
240
|
# @!attribute [rw] airflow_version
|
|
239
241
|
# The Apache Airflow version for your environment. If no value is
|
|
240
242
|
# specified, it defaults to the latest version. For more information,
|
|
241
|
-
#
|
|
242
|
-
# Airflow (Amazon MWAA)][1].
|
|
243
|
+
# refer to [Apache Airflow versions on Amazon Managed Workflows for
|
|
244
|
+
# Apache Airflow (Amazon MWAA)][1].
|
|
243
245
|
#
|
|
244
|
-
# Valid values: `
|
|
245
|
-
# `2.
|
|
246
|
+
# Valid values: `2.7.2`, `2.8.1`, `2.9.2`, `2.10.1`, `2.10.3`,
|
|
247
|
+
# `2.11.0`, and `3.0.6`.
|
|
246
248
|
#
|
|
247
249
|
#
|
|
248
250
|
#
|
|
@@ -263,8 +265,8 @@ module Aws::MWAA
|
|
|
263
265
|
#
|
|
264
266
|
# @!attribute [rw] tags
|
|
265
267
|
# The key-value tag pairs you want to associate to your environment.
|
|
266
|
-
# For example, `"Environment": "Staging"`. For more information,
|
|
267
|
-
# [Tagging Amazon Web Services resources][1].
|
|
268
|
+
# For example, `"Environment": "Staging"`. For more information, refer
|
|
269
|
+
# to [Tagging Amazon Web Services resources][1].
|
|
268
270
|
#
|
|
269
271
|
#
|
|
270
272
|
#
|
|
@@ -273,7 +275,7 @@ module Aws::MWAA
|
|
|
273
275
|
#
|
|
274
276
|
# @!attribute [rw] webserver_access_mode
|
|
275
277
|
# Defines the access mode for the Apache Airflow *web server*. For
|
|
276
|
-
# more information,
|
|
278
|
+
# more information, refer to [Apache Airflow access modes][1].
|
|
277
279
|
#
|
|
278
280
|
#
|
|
279
281
|
#
|
|
@@ -490,62 +492,60 @@ module Aws::MWAA
|
|
|
490
492
|
#
|
|
491
493
|
# Valid values:
|
|
492
494
|
#
|
|
493
|
-
# * `CREATING` -
|
|
494
|
-
# progress.
|
|
495
|
+
# * `CREATING` - The request to create the environment is in progress.
|
|
495
496
|
#
|
|
496
|
-
# * `CREATING_SNAPSHOT` -
|
|
497
|
-
#
|
|
498
|
-
#
|
|
499
|
-
#
|
|
500
|
-
#
|
|
501
|
-
#
|
|
502
|
-
#
|
|
497
|
+
# * `CREATING_SNAPSHOT` - The request to update environment details,
|
|
498
|
+
# or upgrade the environment version, is in progress and Amazon MWAA
|
|
499
|
+
# is creating a storage volume snapshot of the Amazon RDS database
|
|
500
|
+
# cluster associated with the environment. A database snapshot is a
|
|
501
|
+
# backup created at a specific point in time. Amazon MWAA uses
|
|
502
|
+
# snapshots to recover environment metadata if the process to update
|
|
503
|
+
# or upgrade an environment fails.
|
|
503
504
|
#
|
|
504
|
-
# * `CREATE_FAILED` -
|
|
505
|
-
#
|
|
505
|
+
# * `CREATE_FAILED` - The request to create the environment failed and
|
|
506
|
+
# the environment was not created.
|
|
506
507
|
#
|
|
507
|
-
# * `AVAILABLE` -
|
|
508
|
-
#
|
|
508
|
+
# * `AVAILABLE` - The request was successful and the environment is
|
|
509
|
+
# ready to use.
|
|
509
510
|
#
|
|
510
|
-
# * `PENDING` -
|
|
511
|
-
#
|
|
512
|
-
#
|
|
511
|
+
# * `PENDING` - The request was successful, but the process to create
|
|
512
|
+
# the environment is paused until you create the required VPC
|
|
513
|
+
# endpoints in your VPC. After you create the VPC endpoints, the
|
|
513
514
|
# process resumes.
|
|
514
515
|
#
|
|
515
|
-
# * `UPDATING` -
|
|
516
|
-
# progress.
|
|
516
|
+
# * `UPDATING` - The request to update the environment is in progress.
|
|
517
517
|
#
|
|
518
|
-
# * `ROLLING_BACK` -
|
|
519
|
-
#
|
|
520
|
-
#
|
|
518
|
+
# * `ROLLING_BACK` - The request to update environment details or
|
|
519
|
+
# upgrade the environment version failed and Amazon MWAA is
|
|
520
|
+
# restoring the environment using the latest storage volume
|
|
521
521
|
# snapshot.
|
|
522
522
|
#
|
|
523
|
-
# * `DELETING` -
|
|
524
|
-
# progress.
|
|
523
|
+
# * `DELETING` - The request to delete the environment is in progress.
|
|
525
524
|
#
|
|
526
|
-
# * `DELETED` -
|
|
527
|
-
#
|
|
525
|
+
# * `DELETED` - The request to delete the environment is complete, and
|
|
526
|
+
# the environment has been deleted.
|
|
528
527
|
#
|
|
529
|
-
# * `UNAVAILABLE` -
|
|
530
|
-
#
|
|
528
|
+
# * `UNAVAILABLE` - The request failed, but the environment did not
|
|
529
|
+
# return to its previous state and is not stable.
|
|
531
530
|
#
|
|
532
|
-
# * `UPDATE_FAILED` -
|
|
533
|
-
#
|
|
534
|
-
#
|
|
531
|
+
# * `UPDATE_FAILED` - The request to update the environment failed and
|
|
532
|
+
# the environment was restored to its previous state successfully
|
|
533
|
+
# and is ready to use.
|
|
535
534
|
#
|
|
536
|
-
# * `MAINTENANCE` -
|
|
537
|
-
#
|
|
538
|
-
#
|
|
539
|
-
#
|
|
540
|
-
#
|
|
535
|
+
# * `MAINTENANCE` - The environment is undergoing maintenance.
|
|
536
|
+
# Depending on the type of work Amazon MWAA is performing, your
|
|
537
|
+
# environment might be unavailable during this process. Note that as
|
|
538
|
+
# part of the maintenance work, Amazon MWAA performs with a
|
|
539
|
+
# `GRACEFUL` [ `workerReplacementStrategy` ][1].
|
|
541
540
|
#
|
|
542
|
-
#
|
|
543
|
-
#
|
|
544
|
-
#
|
|
541
|
+
# You can review our troubleshooting guide for a list of common errors
|
|
542
|
+
# and their solutions. For more information, refer to [Amazon MWAA
|
|
543
|
+
# troubleshooting][2].
|
|
545
544
|
#
|
|
546
545
|
#
|
|
547
546
|
#
|
|
548
|
-
# [1]: https://docs.aws.amazon.com/mwaa/latest/
|
|
547
|
+
# [1]: https://docs.aws.amazon.com/mwaa/latest/API/API_UpdateEnvironment.html#mwaa-UpdateEnvironment-request-WorkerReplacementStrategy
|
|
548
|
+
# [2]: https://docs.aws.amazon.com/mwaa/latest/userguide/troubleshooting.html
|
|
549
549
|
# @return [String]
|
|
550
550
|
#
|
|
551
551
|
# @!attribute [rw] arn
|
|
@@ -558,8 +558,8 @@ module Aws::MWAA
|
|
|
558
558
|
#
|
|
559
559
|
# @!attribute [rw] webserver_url
|
|
560
560
|
# The Apache Airflow *web server* host name for the Amazon MWAA
|
|
561
|
-
# environment. For more information,
|
|
562
|
-
# UI][1].
|
|
561
|
+
# environment. For more information, refer to [Accessing the Apache
|
|
562
|
+
# Airflow UI][1].
|
|
563
563
|
#
|
|
564
564
|
#
|
|
565
565
|
#
|
|
@@ -571,7 +571,7 @@ module Aws::MWAA
|
|
|
571
571
|
# allows MWAA to access Amazon Web Services resources in your
|
|
572
572
|
# environment. For example,
|
|
573
573
|
# `arn:aws:iam::123456789:role/my-execution-role`. For more
|
|
574
|
-
# information,
|
|
574
|
+
# information, refer to [Amazon MWAA Execution role][1].
|
|
575
575
|
#
|
|
576
576
|
#
|
|
577
577
|
#
|
|
@@ -580,8 +580,8 @@ module Aws::MWAA
|
|
|
580
580
|
#
|
|
581
581
|
# @!attribute [rw] service_role_arn
|
|
582
582
|
# The Amazon Resource Name (ARN) for the service-linked role of the
|
|
583
|
-
# environment. For more information,
|
|
584
|
-
# role][1].
|
|
583
|
+
# environment. For more information, refer to [Amazon MWAA
|
|
584
|
+
# Service-linked role][1].
|
|
585
585
|
#
|
|
586
586
|
#
|
|
587
587
|
#
|
|
@@ -595,15 +595,15 @@ module Aws::MWAA
|
|
|
595
595
|
# @!attribute [rw] airflow_version
|
|
596
596
|
# The Apache Airflow version on your environment.
|
|
597
597
|
#
|
|
598
|
-
# Valid values: `
|
|
599
|
-
# `2.
|
|
598
|
+
# Valid values: `2.7.2`, `2.8.1`, `2.9.2`, `2.10.1`, `2.10.3`,
|
|
599
|
+
# `2.11.0`, and `3.0.6`.
|
|
600
600
|
# @return [String]
|
|
601
601
|
#
|
|
602
602
|
# @!attribute [rw] source_bucket_arn
|
|
603
603
|
# The Amazon Resource Name (ARN) of the Amazon S3 bucket where your
|
|
604
604
|
# DAG code and supporting files are stored. For example,
|
|
605
605
|
# `arn:aws:s3:::my-airflow-bucket-unique-name`. For more information,
|
|
606
|
-
#
|
|
606
|
+
# refer to [Create an Amazon S3 bucket for Amazon MWAA][1].
|
|
607
607
|
#
|
|
608
608
|
#
|
|
609
609
|
#
|
|
@@ -612,8 +612,8 @@ module Aws::MWAA
|
|
|
612
612
|
#
|
|
613
613
|
# @!attribute [rw] dag_s3_path
|
|
614
614
|
# The relative path to the DAGs folder in your Amazon S3 bucket. For
|
|
615
|
-
# example, `s3://mwaa-environment/dags`. For more information,
|
|
616
|
-
# [Adding or updating DAGs][1].
|
|
615
|
+
# example, `s3://mwaa-environment/dags`. For more information, refer
|
|
616
|
+
# to [Adding or updating DAGs][1].
|
|
617
617
|
#
|
|
618
618
|
#
|
|
619
619
|
#
|
|
@@ -622,7 +622,7 @@ module Aws::MWAA
|
|
|
622
622
|
#
|
|
623
623
|
# @!attribute [rw] plugins_s3_path
|
|
624
624
|
# The relative path to the file in your Amazon S3 bucket. For example,
|
|
625
|
-
# `s3://mwaa-environment/plugins.zip`. For more information,
|
|
625
|
+
# `s3://mwaa-environment/plugins.zip`. For more information, refer to
|
|
626
626
|
# [Installing custom plugins][1].
|
|
627
627
|
#
|
|
628
628
|
#
|
|
@@ -639,7 +639,7 @@ module Aws::MWAA
|
|
|
639
639
|
#
|
|
640
640
|
# `3sL4kqtJlcpXroDTDmJ+rmSpXd3dIbrHY+MTRCxf3vjVBH40Nr8X8gdRQBpUMLUo`
|
|
641
641
|
#
|
|
642
|
-
# For more information,
|
|
642
|
+
# For more information, refer to [Installing custom plugins][2].
|
|
643
643
|
#
|
|
644
644
|
#
|
|
645
645
|
#
|
|
@@ -650,7 +650,7 @@ module Aws::MWAA
|
|
|
650
650
|
# @!attribute [rw] requirements_s3_path
|
|
651
651
|
# The relative path to the `requirements.txt` file in your Amazon S3
|
|
652
652
|
# bucket. For example, `s3://mwaa-environment/requirements.txt`. For
|
|
653
|
-
# more information,
|
|
653
|
+
# more information, refer to [Installing Python dependencies][1].
|
|
654
654
|
#
|
|
655
655
|
#
|
|
656
656
|
#
|
|
@@ -667,7 +667,7 @@ module Aws::MWAA
|
|
|
667
667
|
#
|
|
668
668
|
# `3sL4kqtJlcpXroDTDmJ+rmSpXd3dIbrHY+MTRCxf3vjVBH40Nr8X8gdRQBpUMLUo`
|
|
669
669
|
#
|
|
670
|
-
# For more information,
|
|
670
|
+
# For more information, refer to [Installing Python dependencies][2].
|
|
671
671
|
#
|
|
672
672
|
#
|
|
673
673
|
#
|
|
@@ -682,8 +682,8 @@ module Aws::MWAA
|
|
|
682
682
|
# Amazon MWAA runs the script as your environment starts, and before
|
|
683
683
|
# running the Apache Airflow process. You can use this script to
|
|
684
684
|
# install dependencies, modify Apache Airflow configuration options,
|
|
685
|
-
# and set environment variables. For more information,
|
|
686
|
-
# startup script][1].
|
|
685
|
+
# and set environment variables. For more information, refer to [Using
|
|
686
|
+
# a startup script][1].
|
|
687
687
|
#
|
|
688
688
|
#
|
|
689
689
|
#
|
|
@@ -700,7 +700,7 @@ module Aws::MWAA
|
|
|
700
700
|
#
|
|
701
701
|
# `3sL4kqtJlcpXroDTDmJ+rmSpXd3dIbrHY+MTRCxf3vjVBH40Nr8X8gdRQBpUMLUo`
|
|
702
702
|
#
|
|
703
|
-
# For more information,
|
|
703
|
+
# For more information, refer to [Using a startup script][2].
|
|
704
704
|
#
|
|
705
705
|
#
|
|
706
706
|
#
|
|
@@ -711,7 +711,7 @@ module Aws::MWAA
|
|
|
711
711
|
# @!attribute [rw] airflow_configuration_options
|
|
712
712
|
# A list of key-value pairs containing the Apache Airflow
|
|
713
713
|
# configuration options attached to your environment. For more
|
|
714
|
-
# information,
|
|
714
|
+
# information, refer to [Apache Airflow configuration options][1].
|
|
715
715
|
#
|
|
716
716
|
#
|
|
717
717
|
#
|
|
@@ -721,7 +721,7 @@ module Aws::MWAA
|
|
|
721
721
|
# @!attribute [rw] environment_class
|
|
722
722
|
# The environment class type. Valid values: `mw1.micro`, `mw1.small`,
|
|
723
723
|
# `mw1.medium`, `mw1.large`, `mw1.xlarge`, and `mw1.2xlarge`. For more
|
|
724
|
-
# information,
|
|
724
|
+
# information, refer to [Amazon MWAA environment class][1].
|
|
725
725
|
#
|
|
726
726
|
#
|
|
727
727
|
#
|
|
@@ -736,8 +736,8 @@ module Aws::MWAA
|
|
|
736
736
|
# @!attribute [rw] network_configuration
|
|
737
737
|
# Describes the VPC networking components used to secure and enable
|
|
738
738
|
# network traffic between the Amazon Web Services resources for your
|
|
739
|
-
# environment. For more information,
|
|
740
|
-
# MWAA][1].
|
|
739
|
+
# environment. For more information, refer to [About networking on
|
|
740
|
+
# Amazon MWAA][1].
|
|
741
741
|
#
|
|
742
742
|
#
|
|
743
743
|
#
|
|
@@ -760,7 +760,7 @@ module Aws::MWAA
|
|
|
760
760
|
#
|
|
761
761
|
# @!attribute [rw] tags
|
|
762
762
|
# The key-value tag pairs associated to your environment. For example,
|
|
763
|
-
# `"Environment": "Staging"`. For more information,
|
|
763
|
+
# `"Environment": "Staging"`. For more information, refer to [Tagging
|
|
764
764
|
# Amazon Web Services resources][1].
|
|
765
765
|
#
|
|
766
766
|
#
|
|
@@ -770,7 +770,7 @@ module Aws::MWAA
|
|
|
770
770
|
#
|
|
771
771
|
# @!attribute [rw] webserver_access_mode
|
|
772
772
|
# The Apache Airflow *web server* access mode. For more information,
|
|
773
|
-
#
|
|
773
|
+
# refer to [Apache Airflow access modes][1].
|
|
774
774
|
#
|
|
775
775
|
#
|
|
776
776
|
#
|
|
@@ -1075,7 +1075,7 @@ module Aws::MWAA
|
|
|
1075
1075
|
|
|
1076
1076
|
# @!attribute [rw] tags
|
|
1077
1077
|
# The key-value tag pairs associated to your environment. For more
|
|
1078
|
-
# information,
|
|
1078
|
+
# information, refer to [Tagging Amazon Web Services resources][1].
|
|
1079
1079
|
#
|
|
1080
1080
|
#
|
|
1081
1081
|
#
|
|
@@ -1177,7 +1177,8 @@ module Aws::MWAA
|
|
|
1177
1177
|
# @return [String]
|
|
1178
1178
|
#
|
|
1179
1179
|
# @!attribute [rw] timestamp
|
|
1180
|
-
# **Internal only**. The time the metric data was received
|
|
1180
|
+
# **Internal only**. The time the metric data was received, expressed
|
|
1181
|
+
# as an ISO 8601 datetime string.
|
|
1181
1182
|
# @return [Time]
|
|
1182
1183
|
#
|
|
1183
1184
|
# @!attribute [rw] dimensions
|
|
@@ -1263,16 +1264,16 @@ module Aws::MWAA
|
|
|
1263
1264
|
|
|
1264
1265
|
# Describes the VPC networking components used to secure and enable
|
|
1265
1266
|
# network traffic between the Amazon Web Services resources for your
|
|
1266
|
-
# environment. For more information,
|
|
1267
|
-
# MWAA][1].
|
|
1267
|
+
# environment. For more information, refer to [About networking on
|
|
1268
|
+
# Amazon MWAA][1].
|
|
1268
1269
|
#
|
|
1269
1270
|
#
|
|
1270
1271
|
#
|
|
1271
1272
|
# [1]: https://docs.aws.amazon.com/mwaa/latest/userguide/networking-about.html
|
|
1272
1273
|
#
|
|
1273
1274
|
# @!attribute [rw] subnet_ids
|
|
1274
|
-
# A list of subnet IDs. For more information,
|
|
1275
|
-
# Amazon MWAA][1].
|
|
1275
|
+
# A list of subnet IDs. For more information, refer to [About
|
|
1276
|
+
# networking on Amazon MWAA][1].
|
|
1276
1277
|
#
|
|
1277
1278
|
#
|
|
1278
1279
|
#
|
|
@@ -1280,8 +1281,8 @@ module Aws::MWAA
|
|
|
1280
1281
|
# @return [Array<String>]
|
|
1281
1282
|
#
|
|
1282
1283
|
# @!attribute [rw] security_group_ids
|
|
1283
|
-
# A list of security group IDs. For more information,
|
|
1284
|
-
# your VPC on Amazon MWAA][1].
|
|
1284
|
+
# A list of security group IDs. For more information, refer to
|
|
1285
|
+
# [Security in your VPC on Amazon MWAA][1].
|
|
1285
1286
|
#
|
|
1286
1287
|
#
|
|
1287
1288
|
#
|
|
@@ -1379,6 +1380,19 @@ module Aws::MWAA
|
|
|
1379
1380
|
include Aws::Structure
|
|
1380
1381
|
end
|
|
1381
1382
|
|
|
1383
|
+
# ServiceUnavailableException: The service is currently unavailable.
|
|
1384
|
+
#
|
|
1385
|
+
# @!attribute [rw] message
|
|
1386
|
+
# @return [String]
|
|
1387
|
+
#
|
|
1388
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mwaa-2020-07-01/ServiceUnavailableException AWS API Documentation
|
|
1389
|
+
#
|
|
1390
|
+
class ServiceUnavailableException < Struct.new(
|
|
1391
|
+
:message)
|
|
1392
|
+
SENSITIVE = []
|
|
1393
|
+
include Aws::Structure
|
|
1394
|
+
end
|
|
1395
|
+
|
|
1382
1396
|
# **Internal only**. Represents a set of statistics that describe a
|
|
1383
1397
|
# specific metric. To learn more about the metrics published to Amazon
|
|
1384
1398
|
# CloudWatch, see [Amazon MWAA performance metrics in Amazon
|
|
@@ -1423,8 +1437,8 @@ module Aws::MWAA
|
|
|
1423
1437
|
#
|
|
1424
1438
|
# @!attribute [rw] tags
|
|
1425
1439
|
# The key-value tag pairs you want to associate to your environment.
|
|
1426
|
-
# For example, `"Environment": "Staging"`. For more information,
|
|
1427
|
-
# [Tagging Amazon Web Services resources][1].
|
|
1440
|
+
# For example, `"Environment": "Staging"`. For more information, refer
|
|
1441
|
+
# to [Tagging Amazon Web Services resources][1].
|
|
1428
1442
|
#
|
|
1429
1443
|
#
|
|
1430
1444
|
#
|
|
@@ -1478,7 +1492,7 @@ module Aws::MWAA
|
|
|
1478
1492
|
# allows MWAA to access Amazon Web Services resources in your
|
|
1479
1493
|
# environment. For example,
|
|
1480
1494
|
# `arn:aws:iam::123456789:role/my-execution-role`. For more
|
|
1481
|
-
# information,
|
|
1495
|
+
# information, refer to [Amazon MWAA Execution role][1].
|
|
1482
1496
|
#
|
|
1483
1497
|
#
|
|
1484
1498
|
#
|
|
@@ -1488,7 +1502,8 @@ module Aws::MWAA
|
|
|
1488
1502
|
# @!attribute [rw] airflow_configuration_options
|
|
1489
1503
|
# A list of key-value pairs containing the Apache Airflow
|
|
1490
1504
|
# configuration options you want to attach to your environment. For
|
|
1491
|
-
# more information,
|
|
1505
|
+
# more information, refer to [Apache Airflow configuration
|
|
1506
|
+
# options][1].
|
|
1492
1507
|
#
|
|
1493
1508
|
#
|
|
1494
1509
|
#
|
|
@@ -1498,16 +1513,17 @@ module Aws::MWAA
|
|
|
1498
1513
|
# @!attribute [rw] airflow_version
|
|
1499
1514
|
# The Apache Airflow version for your environment. To upgrade your
|
|
1500
1515
|
# environment, specify a newer version of Apache Airflow supported by
|
|
1501
|
-
# Amazon MWAA.
|
|
1516
|
+
# Amazon MWAA. To downgrade your environment, specify an older version
|
|
1517
|
+
# of Apache Airflow supported by Amazon MWAA.
|
|
1502
1518
|
#
|
|
1503
|
-
# Before you upgrade an environment, make sure your
|
|
1504
|
-
# DAGs, plugins, and other resources used in your
|
|
1505
|
-
# compatible with the new Apache Airflow version. For
|
|
1506
|
-
# about updating your resources, see [Upgrading
|
|
1507
|
-
# environment][1].
|
|
1519
|
+
# Before you upgrade or downgrade an environment, make sure your
|
|
1520
|
+
# requirements, DAGs, plugins, and other resources used in your
|
|
1521
|
+
# workflows are compatible with the new Apache Airflow version. For
|
|
1522
|
+
# more information about updating your resources, see [Upgrading and
|
|
1523
|
+
# downgrading an Amazon MWAA environment][1].
|
|
1508
1524
|
#
|
|
1509
|
-
# Valid values: `
|
|
1510
|
-
# `2.
|
|
1525
|
+
# Valid values: `2.7.2`, `2.8.1`, `2.9.2`, `2.10.1`, `2.10.3`,
|
|
1526
|
+
# `2.11.0`, and `3.0.6`.
|
|
1511
1527
|
#
|
|
1512
1528
|
#
|
|
1513
1529
|
#
|
|
@@ -1516,7 +1532,7 @@ module Aws::MWAA
|
|
|
1516
1532
|
#
|
|
1517
1533
|
# @!attribute [rw] dag_s3_path
|
|
1518
1534
|
# The relative path to the DAGs folder on your Amazon S3 bucket. For
|
|
1519
|
-
# example, `dags`. For more information,
|
|
1535
|
+
# example, `dags`. For more information, refer to [Adding or updating
|
|
1520
1536
|
# DAGs][1].
|
|
1521
1537
|
#
|
|
1522
1538
|
#
|
|
@@ -1527,7 +1543,7 @@ module Aws::MWAA
|
|
|
1527
1543
|
# @!attribute [rw] environment_class
|
|
1528
1544
|
# The environment class type. Valid values: `mw1.micro`, `mw1.small`,
|
|
1529
1545
|
# `mw1.medium`, `mw1.large`, `mw1.xlarge`, and `mw1.2xlarge`. For more
|
|
1530
|
-
# information,
|
|
1546
|
+
# information, refer to [Amazon MWAA environment class][1].
|
|
1531
1547
|
#
|
|
1532
1548
|
#
|
|
1533
1549
|
#
|
|
@@ -1607,8 +1623,8 @@ module Aws::MWAA
|
|
|
1607
1623
|
# @!attribute [rw] network_configuration
|
|
1608
1624
|
# The VPC networking components used to secure and enable network
|
|
1609
1625
|
# traffic between the Amazon Web Services resources for your
|
|
1610
|
-
# environment. For more information,
|
|
1611
|
-
# MWAA][1].
|
|
1626
|
+
# environment. For more information, refer to [About networking on
|
|
1627
|
+
# Amazon MWAA][1].
|
|
1612
1628
|
#
|
|
1613
1629
|
#
|
|
1614
1630
|
#
|
|
@@ -1618,7 +1634,7 @@ module Aws::MWAA
|
|
|
1618
1634
|
# @!attribute [rw] plugins_s3_path
|
|
1619
1635
|
# The relative path to the `plugins.zip` file on your Amazon S3
|
|
1620
1636
|
# bucket. For example, `plugins.zip`. If specified, then the
|
|
1621
|
-
# plugins.zip version is required. For more information,
|
|
1637
|
+
# plugins.zip version is required. For more information, refer to
|
|
1622
1638
|
# [Installing custom plugins][1].
|
|
1623
1639
|
#
|
|
1624
1640
|
#
|
|
@@ -1629,7 +1645,7 @@ module Aws::MWAA
|
|
|
1629
1645
|
# @!attribute [rw] plugins_s3_object_version
|
|
1630
1646
|
# The version of the plugins.zip file on your Amazon S3 bucket. You
|
|
1631
1647
|
# must specify a version each time a `plugins.zip` file is updated.
|
|
1632
|
-
# For more information,
|
|
1648
|
+
# For more information, refer to [How S3 Versioning works][1].
|
|
1633
1649
|
#
|
|
1634
1650
|
#
|
|
1635
1651
|
#
|
|
@@ -1639,8 +1655,8 @@ module Aws::MWAA
|
|
|
1639
1655
|
# @!attribute [rw] requirements_s3_path
|
|
1640
1656
|
# The relative path to the `requirements.txt` file on your Amazon S3
|
|
1641
1657
|
# bucket. For example, `requirements.txt`. If specified, then a file
|
|
1642
|
-
# version is required. For more information,
|
|
1643
|
-
# dependencies][1].
|
|
1658
|
+
# version is required. For more information, refer to [Installing
|
|
1659
|
+
# Python dependencies][1].
|
|
1644
1660
|
#
|
|
1645
1661
|
#
|
|
1646
1662
|
#
|
|
@@ -1650,7 +1666,8 @@ module Aws::MWAA
|
|
|
1650
1666
|
# @!attribute [rw] requirements_s3_object_version
|
|
1651
1667
|
# The version of the requirements.txt file on your Amazon S3 bucket.
|
|
1652
1668
|
# You must specify a version each time a `requirements.txt` file is
|
|
1653
|
-
# updated. For more information,
|
|
1669
|
+
# updated. For more information, refer to [How S3 Versioning
|
|
1670
|
+
# works][1].
|
|
1654
1671
|
#
|
|
1655
1672
|
#
|
|
1656
1673
|
#
|
|
@@ -1666,7 +1683,7 @@ module Aws::MWAA
|
|
|
1666
1683
|
# The Amazon Resource Name (ARN) of the Amazon S3 bucket where your
|
|
1667
1684
|
# DAG code and supporting files are stored. For example,
|
|
1668
1685
|
# `arn:aws:s3:::my-airflow-bucket-unique-name`. For more information,
|
|
1669
|
-
#
|
|
1686
|
+
# refer to [Create an Amazon S3 bucket for Amazon MWAA][1].
|
|
1670
1687
|
#
|
|
1671
1688
|
#
|
|
1672
1689
|
#
|
|
@@ -1680,8 +1697,8 @@ module Aws::MWAA
|
|
|
1680
1697
|
# Amazon MWAA runs the script as your environment starts, and before
|
|
1681
1698
|
# running the Apache Airflow process. You can use this script to
|
|
1682
1699
|
# install dependencies, modify Apache Airflow configuration options,
|
|
1683
|
-
# and set environment variables. For more information,
|
|
1684
|
-
# startup script][1].
|
|
1700
|
+
# and set environment variables. For more information, refer to [Using
|
|
1701
|
+
# a startup script][1].
|
|
1685
1702
|
#
|
|
1686
1703
|
#
|
|
1687
1704
|
#
|
|
@@ -1698,7 +1715,7 @@ module Aws::MWAA
|
|
|
1698
1715
|
#
|
|
1699
1716
|
# `3sL4kqtJlcpXroDTDmJ+rmSpXd3dIbrHY+MTRCxf3vjVBH40Nr8X8gdRQBpUMLUo`
|
|
1700
1717
|
#
|
|
1701
|
-
# For more information,
|
|
1718
|
+
# For more information, refer to [Using a startup script][2].
|
|
1702
1719
|
#
|
|
1703
1720
|
#
|
|
1704
1721
|
#
|
|
@@ -1708,7 +1725,7 @@ module Aws::MWAA
|
|
|
1708
1725
|
#
|
|
1709
1726
|
# @!attribute [rw] webserver_access_mode
|
|
1710
1727
|
# The Apache Airflow *Web server* access mode. For more information,
|
|
1711
|
-
#
|
|
1728
|
+
# refer to [Apache Airflow access modes][1].
|
|
1712
1729
|
#
|
|
1713
1730
|
#
|
|
1714
1731
|
#
|
|
@@ -1789,8 +1806,8 @@ module Aws::MWAA
|
|
|
1789
1806
|
|
|
1790
1807
|
# Defines the VPC networking components used to secure and enable
|
|
1791
1808
|
# network traffic between the Amazon Web Services resources for your
|
|
1792
|
-
# environment. For more information,
|
|
1793
|
-
# MWAA][1].
|
|
1809
|
+
# environment. For more information, refer to [About networking on
|
|
1810
|
+
# Amazon MWAA][1].
|
|
1794
1811
|
#
|
|
1795
1812
|
#
|
|
1796
1813
|
#
|
|
@@ -1798,8 +1815,8 @@ module Aws::MWAA
|
|
|
1798
1815
|
#
|
|
1799
1816
|
# @!attribute [rw] security_group_ids
|
|
1800
1817
|
# A list of security group IDs. A security group must be attached to
|
|
1801
|
-
# the same VPC as the subnets. For more information,
|
|
1802
|
-
# your VPC on Amazon MWAA][1].
|
|
1818
|
+
# the same VPC as the subnets. For more information, refer to
|
|
1819
|
+
# [Security in your VPC on Amazon MWAA][1].
|
|
1803
1820
|
#
|
|
1804
1821
|
#
|
|
1805
1822
|
#
|
data/lib/aws-sdk-mwaa.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -138,7 +138,7 @@ module Aws
|
|
|
138
138
|
},
|
|
139
139
|
?weekly_maintenance_window_start: ::String,
|
|
140
140
|
?tags: Hash[::String, ::String],
|
|
141
|
-
?webserver_access_mode: ("PRIVATE_ONLY" | "PUBLIC_ONLY"),
|
|
141
|
+
?webserver_access_mode: ("PRIVATE_ONLY" | "PUBLIC_ONLY" | "PUBLIC_AND_PRIVATE"),
|
|
142
142
|
?min_workers: ::Integer,
|
|
143
143
|
?schedulers: ::Integer,
|
|
144
144
|
?endpoint_management: ("CUSTOMER" | "SERVICE"),
|
|
@@ -317,7 +317,7 @@ module Aws
|
|
|
317
317
|
?source_bucket_arn: ::String,
|
|
318
318
|
?startup_script_s3_path: ::String,
|
|
319
319
|
?startup_script_s3_object_version: ::String,
|
|
320
|
-
?webserver_access_mode: ("PRIVATE_ONLY" | "PUBLIC_ONLY"),
|
|
320
|
+
?webserver_access_mode: ("PRIVATE_ONLY" | "PUBLIC_ONLY" | "PUBLIC_AND_PRIVATE"),
|
|
321
321
|
?weekly_maintenance_window_start: ::String
|
|
322
322
|
) -> _UpdateEnvironmentResponseSuccess
|
|
323
323
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentResponseSuccess
|
data/sig/errors.rbs
CHANGED
|
@@ -28,6 +28,9 @@ module Aws
|
|
|
28
28
|
def rest_api_status_code: () -> ::String
|
|
29
29
|
def rest_api_response: () -> ::String
|
|
30
30
|
end
|
|
31
|
+
class ServiceUnavailableException < ::Aws::Errors::ServiceError
|
|
32
|
+
def message: () -> ::String
|
|
33
|
+
end
|
|
31
34
|
class ValidationException < ::Aws::Errors::ServiceError
|
|
32
35
|
def message: () -> ::String
|
|
33
36
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -44,7 +44,7 @@ module Aws::MWAA
|
|
|
44
44
|
attr_accessor logging_configuration: Types::LoggingConfigurationInput
|
|
45
45
|
attr_accessor weekly_maintenance_window_start: ::String
|
|
46
46
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
47
|
-
attr_accessor webserver_access_mode: ("PRIVATE_ONLY" | "PUBLIC_ONLY")
|
|
47
|
+
attr_accessor webserver_access_mode: ("PRIVATE_ONLY" | "PUBLIC_ONLY" | "PUBLIC_AND_PRIVATE")
|
|
48
48
|
attr_accessor min_workers: ::Integer
|
|
49
49
|
attr_accessor schedulers: ::Integer
|
|
50
50
|
attr_accessor endpoint_management: ("CUSTOMER" | "SERVICE")
|
|
@@ -111,7 +111,7 @@ module Aws::MWAA
|
|
|
111
111
|
attr_accessor last_update: Types::LastUpdate
|
|
112
112
|
attr_accessor weekly_maintenance_window_start: ::String
|
|
113
113
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
114
|
-
attr_accessor webserver_access_mode: ("PRIVATE_ONLY" | "PUBLIC_ONLY")
|
|
114
|
+
attr_accessor webserver_access_mode: ("PRIVATE_ONLY" | "PUBLIC_ONLY" | "PUBLIC_AND_PRIVATE")
|
|
115
115
|
attr_accessor min_workers: ::Integer
|
|
116
116
|
attr_accessor schedulers: ::Integer
|
|
117
117
|
attr_accessor webserver_vpc_endpoint_service: ::String
|
|
@@ -257,6 +257,11 @@ module Aws::MWAA
|
|
|
257
257
|
SENSITIVE: [:rest_api_response]
|
|
258
258
|
end
|
|
259
259
|
|
|
260
|
+
class ServiceUnavailableException
|
|
261
|
+
attr_accessor message: ::String
|
|
262
|
+
SENSITIVE: []
|
|
263
|
+
end
|
|
264
|
+
|
|
260
265
|
class StatisticSet
|
|
261
266
|
attr_accessor sample_count: ::Integer
|
|
262
267
|
attr_accessor sum: ::Float
|
|
@@ -305,7 +310,7 @@ module Aws::MWAA
|
|
|
305
310
|
attr_accessor source_bucket_arn: ::String
|
|
306
311
|
attr_accessor startup_script_s3_path: ::String
|
|
307
312
|
attr_accessor startup_script_s3_object_version: ::String
|
|
308
|
-
attr_accessor webserver_access_mode: ("PRIVATE_ONLY" | "PUBLIC_ONLY")
|
|
313
|
+
attr_accessor webserver_access_mode: ("PRIVATE_ONLY" | "PUBLIC_ONLY" | "PUBLIC_AND_PRIVATE")
|
|
309
314
|
attr_accessor weekly_maintenance_window_start: ::String
|
|
310
315
|
SENSITIVE: [:airflow_configuration_options]
|
|
311
316
|
end
|