libZSservicesZSamazonka-mwaaZSamazonka-mwaa
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.MwAA

Description

Derived from API version 2020-07-01 of the AWS service descriptions, licensed under Apache 2.0.

Amazon Managed Workflows for Apache Airflow

This section contains the Amazon Managed Workflows for Apache Airflow (MWAA) API reference documentation. For more information, see What Is Amazon MWAA?.

Synopsis

Service Configuration

defaultService :: Service Source #

API version 2020-07-01 of the Amazon MWAA SDK configuration.

Errors

Error matchers are designed for use with the functions provided by Control.Exception.Lens. This allows catching (and rethrowing) service specific errors returned by MwAA.

ValidationException

_ValidationException :: AsError a => Getting (First ServiceError) a ServiceError Source #

ValidationException: The provided input is not valid.

AccessDeniedException

_AccessDeniedException :: AsError a => Getting (First ServiceError) a ServiceError Source #

Access to the Airflow Web UI or CLI has been Denied. Please follow the MWAA user guide to setup permissions to access the Web UI and CLI functionality.

InternalServerException

_InternalServerException :: AsError a => Getting (First ServiceError) a ServiceError Source #

InternalServerException: An internal error has occurred.

ResourceNotFoundException

_ResourceNotFoundException :: AsError a => Getting (First ServiceError) a ServiceError Source #

ResourceNotFoundException: The resource is not available.

Waiters

Waiters poll by repeatedly sending a request until some remote success condition configured by the Wait specification is fulfilled. The Wait specification determines how many attempts should be made, in addition to delay and retry strategies.

Operations

Some AWS operations return results that are incomplete and require subsequent requests in order to obtain the entire result set. The process of sending subsequent requests to continue where a previous request left off is called pagination. For example, the ListObjects operation of Amazon S3 returns up to 1000 objects at a time, and you must send subsequent requests with the appropriate Marker in order to retrieve the next page of results.

Operations that have an AWSPager instance can transparently perform subsequent requests, correctly setting Markers and other request facets to iterate through the entire result set of a truncated API operation. Operations which support this have an additional note in the documentation.

Many operations have the ability to filter results on the server side. See the individual operation parameters for details.

ListEnvironments (Paginated)

data ListEnvironments Source #

See: newListEnvironments smart constructor.

Instances

Instances details
Eq ListEnvironments Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

Read ListEnvironments Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

Show ListEnvironments Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

Generic ListEnvironments Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

Associated Types

type Rep ListEnvironments :: Type -> Type #

NFData ListEnvironments Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

Methods

rnf :: ListEnvironments -> () #

Hashable ListEnvironments Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

AWSPager ListEnvironments Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

AWSRequest ListEnvironments Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

Associated Types

type AWSResponse ListEnvironments #

ToHeaders ListEnvironments Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

ToPath ListEnvironments Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

ToQuery ListEnvironments Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

type Rep ListEnvironments Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

type Rep ListEnvironments = D1 ('MetaData "ListEnvironments" "Amazonka.MwAA.ListEnvironments" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "ListEnvironments'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))))
type AWSResponse ListEnvironments Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

newListEnvironments :: ListEnvironments Source #

Create a value of ListEnvironments with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:nextToken:ListEnvironments', listEnvironments_nextToken - Retrieves the next page of the results.

$sel:maxResults:ListEnvironments', listEnvironments_maxResults - The maximum number of results to retrieve per page. For example, 5 environments per page.

data ListEnvironmentsResponse Source #

See: newListEnvironmentsResponse smart constructor.

Instances

Instances details
Eq ListEnvironmentsResponse Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

Read ListEnvironmentsResponse Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

Show ListEnvironmentsResponse Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

Generic ListEnvironmentsResponse Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

Associated Types

type Rep ListEnvironmentsResponse :: Type -> Type #

NFData ListEnvironmentsResponse Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

type Rep ListEnvironmentsResponse Source # 
Instance details

Defined in Amazonka.MwAA.ListEnvironments

type Rep ListEnvironmentsResponse = D1 ('MetaData "ListEnvironmentsResponse" "Amazonka.MwAA.ListEnvironments" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "ListEnvironmentsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "environments") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Text]))))

newListEnvironmentsResponse Source #

Create a value of ListEnvironmentsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:nextToken:ListEnvironments', listEnvironmentsResponse_nextToken - Retrieves the next page of the results.

$sel:httpStatus:ListEnvironmentsResponse', listEnvironmentsResponse_httpStatus - The response's http status code.

$sel:environments:ListEnvironmentsResponse', listEnvironmentsResponse_environments - Returns the list of Amazon MWAA environments.

UpdateEnvironment

data UpdateEnvironment Source #

See: newUpdateEnvironment smart constructor.

Instances

Instances details
Eq UpdateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.UpdateEnvironment

Show UpdateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.UpdateEnvironment

Generic UpdateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.UpdateEnvironment

Associated Types

type Rep UpdateEnvironment :: Type -> Type #

NFData UpdateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.UpdateEnvironment

Methods

rnf :: UpdateEnvironment -> () #

Hashable UpdateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.UpdateEnvironment

ToJSON UpdateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.UpdateEnvironment

AWSRequest UpdateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.UpdateEnvironment

Associated Types

type AWSResponse UpdateEnvironment #

ToHeaders UpdateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.UpdateEnvironment

ToPath UpdateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.UpdateEnvironment

ToQuery UpdateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.UpdateEnvironment

type Rep UpdateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.UpdateEnvironment

type Rep UpdateEnvironment = D1 ('MetaData "UpdateEnvironment" "Amazonka.MwAA.UpdateEnvironment" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "UpdateEnvironment'" 'PrefixI 'True) ((((S1 ('MetaSel ('Just "schedulers") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "minWorkers") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "pluginsS3Path") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "webserverAccessMode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe WebserverAccessMode)))) :*: ((S1 ('MetaSel ('Just "airflowVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "weeklyMaintenanceWindowStart") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "executionRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "requirementsS3ObjectVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "sourceBucketArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))) :*: (((S1 ('MetaSel ('Just "dagS3Path") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "pluginsS3ObjectVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "airflowConfigurationOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text Text)))) :*: S1 ('MetaSel ('Just "loggingConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LoggingConfigurationInput)))) :*: ((S1 ('MetaSel ('Just "environmentClass") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "networkConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe UpdateNetworkConfigurationInput))) :*: (S1 ('MetaSel ('Just "requirementsS3Path") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "maxWorkers") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))))
type AWSResponse UpdateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.UpdateEnvironment

newUpdateEnvironment Source #

Create a value of UpdateEnvironment with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:schedulers:UpdateEnvironment', updateEnvironment_schedulers - The number of Apache Airflow schedulers to run in your Amazon MWAA environment.

$sel:minWorkers:UpdateEnvironment', updateEnvironment_minWorkers - The minimum number of workers that you want to run in your environment. MWAA scales the number of Apache Airflow workers up to the number you specify in the MaxWorkers field. When there are no more tasks running, and no more in the queue, MWAA disposes of the extra workers leaving the worker count you specify in the MinWorkers field. For example, 2.

$sel:pluginsS3Path:UpdateEnvironment', updateEnvironment_pluginsS3Path - The relative path to the plugins.zip file on your Amazon S3 bucket. For example, plugins.zip. If specified, then the plugins.zip version is required. To learn more, see Installing custom plugins.

$sel:webserverAccessMode:UpdateEnvironment', updateEnvironment_webserverAccessMode - The Apache Airflow Web server access mode. To learn more, see Apache Airflow access modes.

$sel:airflowVersion:UpdateEnvironment', updateEnvironment_airflowVersion - The Apache Airflow version for your environment. For example, v1.10.12. If no value is specified, defaults to the latest version. Valid values: v1.10.12.

$sel:weeklyMaintenanceWindowStart:UpdateEnvironment', updateEnvironment_weeklyMaintenanceWindowStart - The day and time of the week to start weekly maintenance updates of your environment in the following format: DAY:HH:MM. For example: TUE:03:30. You can specify a start time in 30 minute increments only. Supported input includes the following:

  • MON|TUE|WED|THU|FRI|SAT|SUN:([01]\\d|2[0-3]):(00|30)

$sel:executionRoleArn:UpdateEnvironment', updateEnvironment_executionRoleArn - The Amazon Resource Name (ARN) of the execution role in IAM that allows MWAA to access AWS resources in your environment. For example, arn:aws:iam::123456789:role/my-execution-role. To learn more, see Amazon MWAA Execution role.

$sel:requirementsS3ObjectVersion:UpdateEnvironment', updateEnvironment_requirementsS3ObjectVersion - The version of the requirements.txt file on your Amazon S3 bucket. A version must be specified each time a requirements.txt file is updated. To learn more, see How S3 Versioning works.

$sel:sourceBucketArn:UpdateEnvironment', updateEnvironment_sourceBucketArn - The Amazon Resource Name (ARN) of the Amazon S3 bucket where your DAG code and supporting files are stored. For example, arn:aws:s3:::my-airflow-bucket-unique-name. To learn more, see Create an Amazon S3 bucket for Amazon MWAA.

$sel:dagS3Path:UpdateEnvironment', updateEnvironment_dagS3Path - The relative path to the DAGs folder on your Amazon S3 bucket. For example, dags. To learn more, see Adding or updating DAGs.

$sel:pluginsS3ObjectVersion:UpdateEnvironment', updateEnvironment_pluginsS3ObjectVersion - The version of the plugins.zip file on your Amazon S3 bucket. A version must be specified each time a plugins.zip file is updated. To learn more, see How S3 Versioning works.

$sel:airflowConfigurationOptions:UpdateEnvironment', updateEnvironment_airflowConfigurationOptions - A list of key-value pairs containing the Apache Airflow configuration options you want to attach to your environment. To learn more, see Apache Airflow configuration options.

$sel:loggingConfiguration:UpdateEnvironment', updateEnvironment_loggingConfiguration - Defines the Apache Airflow logs to send to CloudWatch Logs: DagProcessingLogs, SchedulerLogs, TaskLogs, WebserverLogs, WorkerLogs.

$sel:environmentClass:UpdateEnvironment', updateEnvironment_environmentClass - The environment class type. Valid values: mw1.small, mw1.medium, mw1.large. To learn more, see Amazon MWAA environment class.

$sel:networkConfiguration:UpdateEnvironment', updateEnvironment_networkConfiguration - The VPC networking components used to secure and enable network traffic between the AWS resources for your environment. To learn more, see About networking on Amazon MWAA.

$sel:requirementsS3Path:UpdateEnvironment', updateEnvironment_requirementsS3Path - The relative path to the requirements.txt file on your Amazon S3 bucket. For example, requirements.txt. If specified, then a file version is required. To learn more, see Installing Python dependencies.

$sel:maxWorkers:UpdateEnvironment', updateEnvironment_maxWorkers - The maximum number of workers that you want to run in your environment. MWAA scales the number of Apache Airflow workers up to the number you specify in the MaxWorkers field. For example, 20. When there are no more tasks running, and no more in the queue, MWAA disposes of the extra workers leaving the one worker that is included with your environment, or the number you specify in MinWorkers.

$sel:name:UpdateEnvironment', updateEnvironment_name - The name of your Amazon MWAA environment. For example, MyMWAAEnvironment.

data UpdateEnvironmentResponse Source #

See: newUpdateEnvironmentResponse smart constructor.

Instances

Instances details
Eq UpdateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.UpdateEnvironment

Read UpdateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.UpdateEnvironment

Show UpdateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.UpdateEnvironment

Generic UpdateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.UpdateEnvironment

Associated Types

type Rep UpdateEnvironmentResponse :: Type -> Type #

NFData UpdateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.UpdateEnvironment

type Rep UpdateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.UpdateEnvironment

type Rep UpdateEnvironmentResponse = D1 ('MetaData "UpdateEnvironmentResponse" "Amazonka.MwAA.UpdateEnvironment" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "UpdateEnvironmentResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateEnvironmentResponse Source #

Create a value of UpdateEnvironmentResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:arn:UpdateEnvironmentResponse', updateEnvironmentResponse_arn - The Amazon Resource Name (ARN) of the Amazon MWAA environment. For example, arn:aws:airflow:us-east-1:123456789012:environment/MyMWAAEnvironment.

$sel:httpStatus:UpdateEnvironmentResponse', updateEnvironmentResponse_httpStatus - The response's http status code.

DeleteEnvironment

data DeleteEnvironment Source #

See: newDeleteEnvironment smart constructor.

Constructors

DeleteEnvironment' Text 

Instances

Instances details
Eq DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.DeleteEnvironment

Read DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.DeleteEnvironment

Show DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.DeleteEnvironment

Generic DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.DeleteEnvironment

Associated Types

type Rep DeleteEnvironment :: Type -> Type #

NFData DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.DeleteEnvironment

Methods

rnf :: DeleteEnvironment -> () #

Hashable DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.DeleteEnvironment

AWSRequest DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.DeleteEnvironment

Associated Types

type AWSResponse DeleteEnvironment #

ToHeaders DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.DeleteEnvironment

ToPath DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.DeleteEnvironment

ToQuery DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.DeleteEnvironment

type Rep DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.DeleteEnvironment

type Rep DeleteEnvironment = D1 ('MetaData "DeleteEnvironment" "Amazonka.MwAA.DeleteEnvironment" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "DeleteEnvironment'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.DeleteEnvironment

newDeleteEnvironment Source #

Create a value of DeleteEnvironment with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:name:DeleteEnvironment', deleteEnvironment_name - The name of the Amazon MWAA environment. For example, MyMWAAEnvironment.

data DeleteEnvironmentResponse Source #

See: newDeleteEnvironmentResponse smart constructor.

Instances

Instances details
Eq DeleteEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.DeleteEnvironment

Read DeleteEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.DeleteEnvironment

Show DeleteEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.DeleteEnvironment

Generic DeleteEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.DeleteEnvironment

Associated Types

type Rep DeleteEnvironmentResponse :: Type -> Type #

NFData DeleteEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.DeleteEnvironment

type Rep DeleteEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.DeleteEnvironment

type Rep DeleteEnvironmentResponse = D1 ('MetaData "DeleteEnvironmentResponse" "Amazonka.MwAA.DeleteEnvironment" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "DeleteEnvironmentResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteEnvironmentResponse Source #

Create a value of DeleteEnvironmentResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:DeleteEnvironmentResponse', deleteEnvironmentResponse_httpStatus - The response's http status code.

CreateWebLoginToken

data CreateWebLoginToken Source #

See: newCreateWebLoginToken smart constructor.

Instances

Instances details
Eq CreateWebLoginToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateWebLoginToken

Read CreateWebLoginToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateWebLoginToken

Show CreateWebLoginToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateWebLoginToken

Generic CreateWebLoginToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateWebLoginToken

Associated Types

type Rep CreateWebLoginToken :: Type -> Type #

NFData CreateWebLoginToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateWebLoginToken

Methods

rnf :: CreateWebLoginToken -> () #

Hashable CreateWebLoginToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateWebLoginToken

ToJSON CreateWebLoginToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateWebLoginToken

AWSRequest CreateWebLoginToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateWebLoginToken

Associated Types

type AWSResponse CreateWebLoginToken #

ToHeaders CreateWebLoginToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateWebLoginToken

ToPath CreateWebLoginToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateWebLoginToken

ToQuery CreateWebLoginToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateWebLoginToken

type Rep CreateWebLoginToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateWebLoginToken

type Rep CreateWebLoginToken = D1 ('MetaData "CreateWebLoginToken" "Amazonka.MwAA.CreateWebLoginToken" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "CreateWebLoginToken'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse CreateWebLoginToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateWebLoginToken

newCreateWebLoginToken Source #

Create a value of CreateWebLoginToken with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:name:CreateWebLoginToken', createWebLoginToken_name - Create an Airflow Web UI login token request for a MWAA environment.

data CreateWebLoginTokenResponse Source #

See: newCreateWebLoginTokenResponse smart constructor.

Instances

Instances details
Eq CreateWebLoginTokenResponse Source # 
Instance details

Defined in Amazonka.MwAA.CreateWebLoginToken

Show CreateWebLoginTokenResponse Source # 
Instance details

Defined in Amazonka.MwAA.CreateWebLoginToken

Generic CreateWebLoginTokenResponse Source # 
Instance details

Defined in Amazonka.MwAA.CreateWebLoginToken

Associated Types

type Rep CreateWebLoginTokenResponse :: Type -> Type #

NFData CreateWebLoginTokenResponse Source # 
Instance details

Defined in Amazonka.MwAA.CreateWebLoginToken

type Rep CreateWebLoginTokenResponse Source # 
Instance details

Defined in Amazonka.MwAA.CreateWebLoginToken

type Rep CreateWebLoginTokenResponse = D1 ('MetaData "CreateWebLoginTokenResponse" "Amazonka.MwAA.CreateWebLoginToken" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "CreateWebLoginTokenResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "webServerHostname") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "webToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newCreateWebLoginTokenResponse Source #

Create a value of CreateWebLoginTokenResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:webServerHostname:CreateWebLoginTokenResponse', createWebLoginTokenResponse_webServerHostname - Create an Airflow Web UI login token response for the provided webserver hostname.

$sel:webToken:CreateWebLoginTokenResponse', createWebLoginTokenResponse_webToken - Create an Airflow Web UI login token response for the provided JWT token.

$sel:httpStatus:CreateWebLoginTokenResponse', createWebLoginTokenResponse_httpStatus - The response's http status code.

ListTagsForResource

data ListTagsForResource Source #

See: newListTagsForResource smart constructor.

Instances

Instances details
Eq ListTagsForResource Source # 
Instance details

Defined in Amazonka.MwAA.ListTagsForResource

Read ListTagsForResource Source # 
Instance details

Defined in Amazonka.MwAA.ListTagsForResource

Show ListTagsForResource Source # 
Instance details

Defined in Amazonka.MwAA.ListTagsForResource

Generic ListTagsForResource Source # 
Instance details

Defined in Amazonka.MwAA.ListTagsForResource

Associated Types

type Rep ListTagsForResource :: Type -> Type #

NFData ListTagsForResource Source # 
Instance details

Defined in Amazonka.MwAA.ListTagsForResource

Methods

rnf :: ListTagsForResource -> () #

Hashable ListTagsForResource Source # 
Instance details

Defined in Amazonka.MwAA.ListTagsForResource

AWSRequest ListTagsForResource Source # 
Instance details

Defined in Amazonka.MwAA.ListTagsForResource

Associated Types

type AWSResponse ListTagsForResource #

ToHeaders ListTagsForResource Source # 
Instance details

Defined in Amazonka.MwAA.ListTagsForResource

ToPath ListTagsForResource Source # 
Instance details

Defined in Amazonka.MwAA.ListTagsForResource

ToQuery ListTagsForResource Source # 
Instance details

Defined in Amazonka.MwAA.ListTagsForResource

type Rep ListTagsForResource Source # 
Instance details

Defined in Amazonka.MwAA.ListTagsForResource

type Rep ListTagsForResource = D1 ('MetaData "ListTagsForResource" "Amazonka.MwAA.ListTagsForResource" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "ListTagsForResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse ListTagsForResource Source # 
Instance details

Defined in Amazonka.MwAA.ListTagsForResource

newListTagsForResource Source #

Create a value of ListTagsForResource with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:resourceArn:ListTagsForResource', listTagsForResource_resourceArn - The Amazon Resource Name (ARN) of the Amazon MWAA environment. For example, arn:aws:airflow:us-east-1:123456789012:environment/MyMWAAEnvironment.

data ListTagsForResourceResponse Source #

See: newListTagsForResourceResponse smart constructor.

Instances

Instances details
Eq ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.MwAA.ListTagsForResource

Read ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.MwAA.ListTagsForResource

Show ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.MwAA.ListTagsForResource

Generic ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.MwAA.ListTagsForResource

Associated Types

type Rep ListTagsForResourceResponse :: Type -> Type #

NFData ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.MwAA.ListTagsForResource

type Rep ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.MwAA.ListTagsForResource

type Rep ListTagsForResourceResponse = D1 ('MetaData "ListTagsForResourceResponse" "Amazonka.MwAA.ListTagsForResource" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "ListTagsForResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newListTagsForResourceResponse Source #

Create a value of ListTagsForResourceResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:tags:ListTagsForResourceResponse', listTagsForResourceResponse_tags - The key-value tag pairs associated to your environment. To learn more, see Tagging AWS resources.

$sel:httpStatus:ListTagsForResourceResponse', listTagsForResourceResponse_httpStatus - The response's http status code.

TagResource

data TagResource Source #

See: newTagResource smart constructor.

Instances

Instances details
Eq TagResource Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

Read TagResource Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

Show TagResource Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

Generic TagResource Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

Associated Types

type Rep TagResource :: Type -> Type #

NFData TagResource Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

Methods

rnf :: TagResource -> () #

Hashable TagResource Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

ToJSON TagResource Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

AWSRequest TagResource Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

Associated Types

type AWSResponse TagResource #

ToHeaders TagResource Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

Methods

toHeaders :: TagResource -> [Header] #

ToPath TagResource Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

ToQuery TagResource Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

type Rep TagResource Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

type Rep TagResource = D1 ('MetaData "TagResource" "Amazonka.MwAA.TagResource" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "TagResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (HashMap Text Text))))
type AWSResponse TagResource Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

newTagResource Source #

Create a value of TagResource with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:resourceArn:TagResource', tagResource_resourceArn - The Amazon Resource Name (ARN) of the Amazon MWAA environment. For example, arn:aws:airflow:us-east-1:123456789012:environment/MyMWAAEnvironment.

$sel:tags:TagResource', tagResource_tags - The key-value tag pairs you want to associate to your environment. For example, "Environment": "Staging". To learn more, see Tagging AWS resources.

data TagResourceResponse Source #

See: newTagResourceResponse smart constructor.

Instances

Instances details
Eq TagResourceResponse Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

Read TagResourceResponse Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

Show TagResourceResponse Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

Generic TagResourceResponse Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

Associated Types

type Rep TagResourceResponse :: Type -> Type #

NFData TagResourceResponse Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

Methods

rnf :: TagResourceResponse -> () #

type Rep TagResourceResponse Source # 
Instance details

Defined in Amazonka.MwAA.TagResource

type Rep TagResourceResponse = D1 ('MetaData "TagResourceResponse" "Amazonka.MwAA.TagResource" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "TagResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newTagResourceResponse Source #

Create a value of TagResourceResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:TagResourceResponse', tagResourceResponse_httpStatus - The response's http status code.

GetEnvironment

data GetEnvironment Source #

See: newGetEnvironment smart constructor.

Constructors

GetEnvironment' Text 

Instances

Instances details
Eq GetEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.GetEnvironment

Read GetEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.GetEnvironment

Show GetEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.GetEnvironment

Generic GetEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.GetEnvironment

Associated Types

type Rep GetEnvironment :: Type -> Type #

NFData GetEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.GetEnvironment

Methods

rnf :: GetEnvironment -> () #

Hashable GetEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.GetEnvironment

AWSRequest GetEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.GetEnvironment

Associated Types

type AWSResponse GetEnvironment #

ToHeaders GetEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.GetEnvironment

ToPath GetEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.GetEnvironment

ToQuery GetEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.GetEnvironment

type Rep GetEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.GetEnvironment

type Rep GetEnvironment = D1 ('MetaData "GetEnvironment" "Amazonka.MwAA.GetEnvironment" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "GetEnvironment'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse GetEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.GetEnvironment

newGetEnvironment Source #

Create a value of GetEnvironment with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:name:GetEnvironment', getEnvironment_name - The name of the Amazon MWAA environment. For example, MyMWAAEnvironment.

data GetEnvironmentResponse Source #

See: newGetEnvironmentResponse smart constructor.

Instances

Instances details
Eq GetEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.GetEnvironment

Read GetEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.GetEnvironment

Show GetEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.GetEnvironment

Generic GetEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.GetEnvironment

Associated Types

type Rep GetEnvironmentResponse :: Type -> Type #

NFData GetEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.GetEnvironment

Methods

rnf :: GetEnvironmentResponse -> () #

type Rep GetEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.GetEnvironment

type Rep GetEnvironmentResponse = D1 ('MetaData "GetEnvironmentResponse" "Amazonka.MwAA.GetEnvironment" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "GetEnvironmentResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "environment") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Environment)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetEnvironmentResponse Source #

Create a value of GetEnvironmentResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:environment:GetEnvironmentResponse', getEnvironmentResponse_environment - An object containing all available details about the environment.

$sel:httpStatus:GetEnvironmentResponse', getEnvironmentResponse_httpStatus - The response's http status code.

UntagResource

data UntagResource Source #

See: newUntagResource smart constructor.

Constructors

UntagResource' Text [Text] 

Instances

Instances details
Eq UntagResource Source # 
Instance details

Defined in Amazonka.MwAA.UntagResource

Read UntagResource Source # 
Instance details

Defined in Amazonka.MwAA.UntagResource

Show UntagResource Source # 
Instance details

Defined in Amazonka.MwAA.UntagResource

Generic UntagResource Source # 
Instance details

Defined in Amazonka.MwAA.UntagResource

Associated Types

type Rep UntagResource :: Type -> Type #

NFData UntagResource Source # 
Instance details

Defined in Amazonka.MwAA.UntagResource

Methods

rnf :: UntagResource -> () #

Hashable UntagResource Source # 
Instance details

Defined in Amazonka.MwAA.UntagResource

AWSRequest UntagResource Source # 
Instance details

Defined in Amazonka.MwAA.UntagResource

Associated Types

type AWSResponse UntagResource #

ToHeaders UntagResource Source # 
Instance details

Defined in Amazonka.MwAA.UntagResource

ToPath UntagResource Source # 
Instance details

Defined in Amazonka.MwAA.UntagResource

ToQuery UntagResource Source # 
Instance details

Defined in Amazonka.MwAA.UntagResource

type Rep UntagResource Source # 
Instance details

Defined in Amazonka.MwAA.UntagResource

type Rep UntagResource = D1 ('MetaData "UntagResource" "Amazonka.MwAA.UntagResource" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "UntagResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tagKeys") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Text])))
type AWSResponse UntagResource Source # 
Instance details

Defined in Amazonka.MwAA.UntagResource

newUntagResource Source #

Create a value of UntagResource with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:resourceArn:UntagResource', untagResource_resourceArn - The Amazon Resource Name (ARN) of the Amazon MWAA environment. For example, arn:aws:airflow:us-east-1:123456789012:environment/MyMWAAEnvironment.

$sel:tagKeys:UntagResource', untagResource_tagKeys - The key-value tag pair you want to remove. For example, "Environment": "Staging".

data UntagResourceResponse Source #

See: newUntagResourceResponse smart constructor.

Instances

Instances details
Eq UntagResourceResponse Source # 
Instance details

Defined in Amazonka.MwAA.UntagResource

Read UntagResourceResponse Source # 
Instance details

Defined in Amazonka.MwAA.UntagResource

Show UntagResourceResponse Source # 
Instance details

Defined in Amazonka.MwAA.UntagResource

Generic UntagResourceResponse Source # 
Instance details

Defined in Amazonka.MwAA.UntagResource

Associated Types

type Rep UntagResourceResponse :: Type -> Type #

NFData UntagResourceResponse Source # 
Instance details

Defined in Amazonka.MwAA.UntagResource

Methods

rnf :: UntagResourceResponse -> () #

type Rep UntagResourceResponse Source # 
Instance details

Defined in Amazonka.MwAA.UntagResource

type Rep UntagResourceResponse = D1 ('MetaData "UntagResourceResponse" "Amazonka.MwAA.UntagResource" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "UntagResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUntagResourceResponse Source #

Create a value of UntagResourceResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:UntagResourceResponse', untagResourceResponse_httpStatus - The response's http status code.

PublishMetrics

data PublishMetrics Source #

See: newPublishMetrics smart constructor.

Instances

Instances details
Eq PublishMetrics Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

Read PublishMetrics Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

Show PublishMetrics Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

Generic PublishMetrics Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

Associated Types

type Rep PublishMetrics :: Type -> Type #

NFData PublishMetrics Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

Methods

rnf :: PublishMetrics -> () #

Hashable PublishMetrics Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

ToJSON PublishMetrics Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

AWSRequest PublishMetrics Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

Associated Types

type AWSResponse PublishMetrics #

ToHeaders PublishMetrics Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

ToPath PublishMetrics Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

ToQuery PublishMetrics Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

type Rep PublishMetrics Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

type Rep PublishMetrics = D1 ('MetaData "PublishMetrics" "Amazonka.MwAA.PublishMetrics" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "PublishMetrics'" 'PrefixI 'True) (S1 ('MetaSel ('Just "environmentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "metricData") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [MetricDatum])))
type AWSResponse PublishMetrics Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

newPublishMetrics Source #

Create a value of PublishMetrics with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:environmentName:PublishMetrics', publishMetrics_environmentName - Publishes environment metric data to Amazon CloudWatch.

$sel:metricData:PublishMetrics', publishMetrics_metricData - Publishes metric data points to Amazon CloudWatch. CloudWatch associates the data points with the specified metrica.

data PublishMetricsResponse Source #

See: newPublishMetricsResponse smart constructor.

Instances

Instances details
Eq PublishMetricsResponse Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

Read PublishMetricsResponse Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

Show PublishMetricsResponse Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

Generic PublishMetricsResponse Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

Associated Types

type Rep PublishMetricsResponse :: Type -> Type #

NFData PublishMetricsResponse Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

Methods

rnf :: PublishMetricsResponse -> () #

type Rep PublishMetricsResponse Source # 
Instance details

Defined in Amazonka.MwAA.PublishMetrics

type Rep PublishMetricsResponse = D1 ('MetaData "PublishMetricsResponse" "Amazonka.MwAA.PublishMetrics" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "PublishMetricsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newPublishMetricsResponse Source #

Create a value of PublishMetricsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:PublishMetricsResponse', publishMetricsResponse_httpStatus - The response's http status code.

CreateEnvironment

data CreateEnvironment Source #

This section contains the Amazon Managed Workflows for Apache Airflow (MWAA) API reference documentation to create an environment. For more information, see Get started with Amazon Managed Workflows for Apache Airflow.

See: newCreateEnvironment smart constructor.

Instances

Instances details
Eq CreateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.CreateEnvironment

Show CreateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.CreateEnvironment

Generic CreateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.CreateEnvironment

Associated Types

type Rep CreateEnvironment :: Type -> Type #

NFData CreateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.CreateEnvironment

Methods

rnf :: CreateEnvironment -> () #

Hashable CreateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.CreateEnvironment

ToJSON CreateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.CreateEnvironment

AWSRequest CreateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.CreateEnvironment

Associated Types

type AWSResponse CreateEnvironment #

ToHeaders CreateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.CreateEnvironment

ToPath CreateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.CreateEnvironment

ToQuery CreateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.CreateEnvironment

type Rep CreateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.CreateEnvironment

type Rep CreateEnvironment = D1 ('MetaData "CreateEnvironment" "Amazonka.MwAA.CreateEnvironment" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "CreateEnvironment'" 'PrefixI 'True) ((((S1 ('MetaSel ('Just "schedulers") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "minWorkers") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "pluginsS3Path") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "webserverAccessMode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe WebserverAccessMode)) :*: S1 ('MetaSel ('Just "airflowVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))) :*: ((S1 ('MetaSel ('Just "kmsKey") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "weeklyMaintenanceWindowStart") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "requirementsS3ObjectVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "pluginsS3ObjectVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "airflowConfigurationOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text Text)))))))) :*: (((S1 ('MetaSel ('Just "loggingConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LoggingConfigurationInput)) :*: S1 ('MetaSel ('Just "environmentClass") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: (S1 ('MetaSel ('Just "requirementsS3Path") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxWorkers") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))))) :*: ((S1 ('MetaSel ('Just "dagS3Path") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "executionRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "networkConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 NetworkConfiguration) :*: S1 ('MetaSel ('Just "sourceBucketArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))))
type AWSResponse CreateEnvironment Source # 
Instance details

Defined in Amazonka.MwAA.CreateEnvironment

newCreateEnvironment Source #

Create a value of CreateEnvironment with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:schedulers:CreateEnvironment', createEnvironment_schedulers - The number of Apache Airflow schedulers to run in your environment.

$sel:minWorkers:CreateEnvironment', createEnvironment_minWorkers - The minimum number of workers that you want to run in your environment. MWAA scales the number of Apache Airflow workers up to the number you specify in the MaxWorkers field. When there are no more tasks running, and no more in the queue, MWAA disposes of the extra workers leaving the worker count you specify in the MinWorkers field. For example, 2.

$sel:pluginsS3Path:CreateEnvironment', createEnvironment_pluginsS3Path - The relative path to the plugins.zip file on your Amazon S3 bucket. For example, plugins.zip. If specified, then the plugins.zip version is required. To learn more, see Installing custom plugins.

$sel:webserverAccessMode:CreateEnvironment', createEnvironment_webserverAccessMode - The Apache Airflow Web server access mode. To learn more, see Apache Airflow access modes.

$sel:airflowVersion:CreateEnvironment', createEnvironment_airflowVersion - The Apache Airflow version for your environment. For example, v1.10.12. If no value is specified, defaults to the latest version. Valid values: v1.10.12.

$sel:kmsKey:CreateEnvironment', createEnvironment_kmsKey - The AWS Key Management Service (KMS) key to encrypt the data in your environment. You can use an AWS owned CMK, or a Customer managed CMK (advanced). To learn more, see Get started with Amazon Managed Workflows for Apache Airflow.

$sel:weeklyMaintenanceWindowStart:CreateEnvironment', createEnvironment_weeklyMaintenanceWindowStart - The day and time of the week to start weekly maintenance updates of your environment in the following format: DAY:HH:MM. For example: TUE:03:30. You can specify a start time in 30 minute increments only. Supported input includes the following:

  • MON|TUE|WED|THU|FRI|SAT|SUN:([01]\\d|2[0-3]):(00|30)

$sel:requirementsS3ObjectVersion:CreateEnvironment', createEnvironment_requirementsS3ObjectVersion - The version of the requirements.txt file on your Amazon S3 bucket. A version must be specified each time a requirements.txt file is updated. To learn more, see How S3 Versioning works.

$sel:pluginsS3ObjectVersion:CreateEnvironment', createEnvironment_pluginsS3ObjectVersion - The version of the plugins.zip file on your Amazon S3 bucket. A version must be specified each time a plugins.zip file is updated. To learn more, see How S3 Versioning works.

$sel:airflowConfigurationOptions:CreateEnvironment', createEnvironment_airflowConfigurationOptions - A list of key-value pairs containing the Apache Airflow configuration options you want to attach to your environment. To learn more, see Apache Airflow configuration options.

$sel:loggingConfiguration:CreateEnvironment', createEnvironment_loggingConfiguration - Defines the Apache Airflow logs to send to CloudWatch Logs: DagProcessingLogs, SchedulerLogs, TaskLogs, WebserverLogs, WorkerLogs.

$sel:environmentClass:CreateEnvironment', createEnvironment_environmentClass - The environment class type. Valid values: mw1.small, mw1.medium, mw1.large. To learn more, see Amazon MWAA environment class.

$sel:tags:CreateEnvironment', createEnvironment_tags - The key-value tag pairs you want to associate to your environment. For example, "Environment": "Staging". To learn more, see Tagging AWS resources.

$sel:requirementsS3Path:CreateEnvironment', createEnvironment_requirementsS3Path - The relative path to the requirements.txt file on your Amazon S3 bucket. For example, requirements.txt. If specified, then a file version is required. To learn more, see Installing Python dependencies.

$sel:maxWorkers:CreateEnvironment', createEnvironment_maxWorkers - The maximum number of workers that you want to run in your environment. MWAA scales the number of Apache Airflow workers up to the number you specify in the MaxWorkers field. For example, 20. When there are no more tasks running, and no more in the queue, MWAA disposes of the extra workers leaving the one worker that is included with your environment, or the number you specify in MinWorkers.

$sel:dagS3Path:CreateEnvironment', createEnvironment_dagS3Path - The relative path to the DAGs folder on your Amazon S3 bucket. For example, dags. To learn more, see Adding or updating DAGs.

$sel:executionRoleArn:CreateEnvironment', createEnvironment_executionRoleArn - The Amazon Resource Name (ARN) of the execution role for your environment. An execution role is an AWS Identity and Access Management (IAM) role that grants MWAA permission to access AWS services and resources used by your environment. For example, arn:aws:iam::123456789:role/my-execution-role. To learn more, see Amazon MWAA Execution role.

$sel:name:CreateEnvironment', createEnvironment_name - The name of the Amazon MWAA environment. For example, MyMWAAEnvironment.

$sel:networkConfiguration:CreateEnvironment', createEnvironment_networkConfiguration - The VPC networking components used to secure and enable network traffic between the AWS resources for your environment. To learn more, see About networking on Amazon MWAA.

$sel:sourceBucketArn:CreateEnvironment', createEnvironment_sourceBucketArn - The Amazon Resource Name (ARN) of the Amazon S3 bucket where your DAG code and supporting files are stored. For example, arn:aws:s3:::my-airflow-bucket-unique-name. To learn more, see Create an Amazon S3 bucket for Amazon MWAA.

data CreateEnvironmentResponse Source #

See: newCreateEnvironmentResponse smart constructor.

Instances

Instances details
Eq CreateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.CreateEnvironment

Read CreateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.CreateEnvironment

Show CreateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.CreateEnvironment

Generic CreateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.CreateEnvironment

Associated Types

type Rep CreateEnvironmentResponse :: Type -> Type #

NFData CreateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.CreateEnvironment

type Rep CreateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MwAA.CreateEnvironment

type Rep CreateEnvironmentResponse = D1 ('MetaData "CreateEnvironmentResponse" "Amazonka.MwAA.CreateEnvironment" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "CreateEnvironmentResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreateEnvironmentResponse Source #

Create a value of CreateEnvironmentResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:arn:CreateEnvironmentResponse', createEnvironmentResponse_arn - The Amazon Resource Name (ARN) returned in the response for the environment.

$sel:httpStatus:CreateEnvironmentResponse', createEnvironmentResponse_httpStatus - The response's http status code.

CreateCliToken

data CreateCliToken Source #

See: newCreateCliToken smart constructor.

Constructors

CreateCliToken' Text 

Instances

Instances details
Eq CreateCliToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateCliToken

Read CreateCliToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateCliToken

Show CreateCliToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateCliToken

Generic CreateCliToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateCliToken

Associated Types

type Rep CreateCliToken :: Type -> Type #

NFData CreateCliToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateCliToken

Methods

rnf :: CreateCliToken -> () #

Hashable CreateCliToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateCliToken

ToJSON CreateCliToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateCliToken

AWSRequest CreateCliToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateCliToken

Associated Types

type AWSResponse CreateCliToken #

ToHeaders CreateCliToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateCliToken

ToPath CreateCliToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateCliToken

ToQuery CreateCliToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateCliToken

type Rep CreateCliToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateCliToken

type Rep CreateCliToken = D1 ('MetaData "CreateCliToken" "Amazonka.MwAA.CreateCliToken" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "CreateCliToken'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse CreateCliToken Source # 
Instance details

Defined in Amazonka.MwAA.CreateCliToken

newCreateCliToken Source #

Create a value of CreateCliToken with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:name:CreateCliToken', createCliToken_name - Create a CLI token request for a MWAA environment.

data CreateCliTokenResponse Source #

See: newCreateCliTokenResponse smart constructor.

Instances

Instances details
Eq CreateCliTokenResponse Source # 
Instance details

Defined in Amazonka.MwAA.CreateCliToken

Show CreateCliTokenResponse Source # 
Instance details

Defined in Amazonka.MwAA.CreateCliToken

Generic CreateCliTokenResponse Source # 
Instance details

Defined in Amazonka.MwAA.CreateCliToken

Associated Types

type Rep CreateCliTokenResponse :: Type -> Type #

NFData CreateCliTokenResponse Source # 
Instance details

Defined in Amazonka.MwAA.CreateCliToken

Methods

rnf :: CreateCliTokenResponse -> () #

type Rep CreateCliTokenResponse Source # 
Instance details

Defined in Amazonka.MwAA.CreateCliToken

type Rep CreateCliTokenResponse = D1 ('MetaData "CreateCliTokenResponse" "Amazonka.MwAA.CreateCliToken" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "CreateCliTokenResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "webServerHostname") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "cliToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newCreateCliTokenResponse Source #

Create a value of CreateCliTokenResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:webServerHostname:CreateCliTokenResponse', createCliTokenResponse_webServerHostname - Create an Airflow CLI login token response for the provided webserver hostname.

$sel:cliToken:CreateCliTokenResponse', createCliTokenResponse_cliToken - Create an Airflow CLI login token response for the provided JWT token.

$sel:httpStatus:CreateCliTokenResponse', createCliTokenResponse_httpStatus - The response's http status code.

Types

EnvironmentStatus

newtype EnvironmentStatus Source #

Instances

Instances details
Eq EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

Ord EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

Read EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

Show EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

Generic EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

Associated Types

type Rep EnvironmentStatus :: Type -> Type #

NFData EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

Methods

rnf :: EnvironmentStatus -> () #

Hashable EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

ToJSON EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

ToJSONKey EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

FromJSON EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

FromJSONKey EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

ToLog EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

ToHeader EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

ToQuery EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

FromXML EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

ToXML EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

ToByteString EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

FromText EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

ToText EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

type Rep EnvironmentStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.EnvironmentStatus

type Rep EnvironmentStatus = D1 ('MetaData "EnvironmentStatus" "Amazonka.MwAA.Types.EnvironmentStatus" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'True) (C1 ('MetaCons "EnvironmentStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromEnvironmentStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

LoggingLevel

newtype LoggingLevel Source #

Constructors

LoggingLevel' 

Instances

Instances details
Eq LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

Ord LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

Read LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

Show LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

Generic LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

Associated Types

type Rep LoggingLevel :: Type -> Type #

NFData LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

Methods

rnf :: LoggingLevel -> () #

Hashable LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

ToJSON LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

ToJSONKey LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

FromJSON LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

FromJSONKey LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

ToLog LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

ToHeader LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

ToQuery LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

FromXML LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

ToXML LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

Methods

toXML :: LoggingLevel -> XML #

ToByteString LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

FromText LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

ToText LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

Methods

toText :: LoggingLevel -> Text #

type Rep LoggingLevel Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingLevel

type Rep LoggingLevel = D1 ('MetaData "LoggingLevel" "Amazonka.MwAA.Types.LoggingLevel" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'True) (C1 ('MetaCons "LoggingLevel'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromLoggingLevel") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

Unit

newtype Unit Source #

Unit

Constructors

Unit' 

Fields

Bundled Patterns

pattern Unit_Bits :: Unit 
pattern Unit_Bits_Second :: Unit 
pattern Unit_Bytes :: Unit 
pattern Unit_Bytes_Second :: Unit 
pattern Unit_Count :: Unit 
pattern Unit_Count_Second :: Unit 
pattern Unit_Gigabits :: Unit 
pattern Unit_Gigabits_Second :: Unit 
pattern Unit_Gigabytes :: Unit 
pattern Unit_Gigabytes_Second :: Unit 
pattern Unit_Kilobits :: Unit 
pattern Unit_Kilobits_Second :: Unit 
pattern Unit_Kilobytes :: Unit 
pattern Unit_Kilobytes_Second :: Unit 
pattern Unit_Megabits :: Unit 
pattern Unit_Megabits_Second :: Unit 
pattern Unit_Megabytes :: Unit 
pattern Unit_Megabytes_Second :: Unit 
pattern Unit_Microseconds :: Unit 
pattern Unit_Milliseconds :: Unit 
pattern Unit_None :: Unit 
pattern Unit_Percent :: Unit 
pattern Unit_Seconds :: Unit 
pattern Unit_Terabits :: Unit 
pattern Unit_Terabits_Second :: Unit 
pattern Unit_Terabytes :: Unit 
pattern Unit_Terabytes_Second :: Unit 

Instances

Instances details
Eq Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

Methods

(==) :: Unit -> Unit -> Bool #

(/=) :: Unit -> Unit -> Bool #

Ord Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

Methods

compare :: Unit -> Unit -> Ordering #

(<) :: Unit -> Unit -> Bool #

(<=) :: Unit -> Unit -> Bool #

(>) :: Unit -> Unit -> Bool #

(>=) :: Unit -> Unit -> Bool #

max :: Unit -> Unit -> Unit #

min :: Unit -> Unit -> Unit #

Read Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

Show Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

Methods

showsPrec :: Int -> Unit -> ShowS #

show :: Unit -> String #

showList :: [Unit] -> ShowS #

Generic Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

Associated Types

type Rep Unit :: Type -> Type #

Methods

from :: Unit -> Rep Unit x #

to :: Rep Unit x -> Unit #

NFData Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

Methods

rnf :: Unit -> () #

Hashable Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

Methods

hashWithSalt :: Int -> Unit -> Int #

hash :: Unit -> Int #

ToJSON Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

ToJSONKey Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

FromJSON Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

FromJSONKey Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

ToLog Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

ToHeader Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

Methods

toHeader :: HeaderName -> Unit -> [Header] #

ToQuery Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

Methods

toQuery :: Unit -> QueryString #

FromXML Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

Methods

parseXML :: [Node] -> Either String Unit #

ToXML Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

Methods

toXML :: Unit -> XML #

ToByteString Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

Methods

toBS :: Unit -> ByteString #

FromText Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

ToText Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

Methods

toText :: Unit -> Text #

type Rep Unit Source # 
Instance details

Defined in Amazonka.MwAA.Types.Unit

type Rep Unit = D1 ('MetaData "Unit" "Amazonka.MwAA.Types.Unit" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'True) (C1 ('MetaCons "Unit'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromUnit") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

UpdateStatus

newtype UpdateStatus Source #

Constructors

UpdateStatus' 

Instances

Instances details
Eq UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

Ord UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

Read UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

Show UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

Generic UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

Associated Types

type Rep UpdateStatus :: Type -> Type #

NFData UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

Methods

rnf :: UpdateStatus -> () #

Hashable UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

ToJSON UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

ToJSONKey UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

FromJSON UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

FromJSONKey UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

ToLog UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

ToHeader UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

ToQuery UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

FromXML UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

ToXML UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

Methods

toXML :: UpdateStatus -> XML #

ToByteString UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

FromText UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

ToText UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

Methods

toText :: UpdateStatus -> Text #

type Rep UpdateStatus Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateStatus

type Rep UpdateStatus = D1 ('MetaData "UpdateStatus" "Amazonka.MwAA.Types.UpdateStatus" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'True) (C1 ('MetaCons "UpdateStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromUpdateStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

WebserverAccessMode

newtype WebserverAccessMode Source #

Instances

Instances details
Eq WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

Ord WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

Read WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

Show WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

Generic WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

Associated Types

type Rep WebserverAccessMode :: Type -> Type #

NFData WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

Methods

rnf :: WebserverAccessMode -> () #

Hashable WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

ToJSON WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

ToJSONKey WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

FromJSON WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

FromJSONKey WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

ToLog WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

ToHeader WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

ToQuery WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

FromXML WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

ToXML WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

ToByteString WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

FromText WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

ToText WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

type Rep WebserverAccessMode Source # 
Instance details

Defined in Amazonka.MwAA.Types.WebserverAccessMode

type Rep WebserverAccessMode = D1 ('MetaData "WebserverAccessMode" "Amazonka.MwAA.Types.WebserverAccessMode" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'True) (C1 ('MetaCons "WebserverAccessMode'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromWebserverAccessMode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

Dimension

data Dimension Source #

Internal only API.

See: newDimension smart constructor.

Constructors

Dimension' Text Text 

Instances

Instances details
Eq Dimension Source # 
Instance details

Defined in Amazonka.MwAA.Types.Dimension

Read Dimension Source # 
Instance details

Defined in Amazonka.MwAA.Types.Dimension

Show Dimension Source # 
Instance details

Defined in Amazonka.MwAA.Types.Dimension

Generic Dimension Source # 
Instance details

Defined in Amazonka.MwAA.Types.Dimension

Associated Types

type Rep Dimension :: Type -> Type #

NFData Dimension Source # 
Instance details

Defined in Amazonka.MwAA.Types.Dimension

Methods

rnf :: Dimension -> () #

Hashable Dimension Source # 
Instance details

Defined in Amazonka.MwAA.Types.Dimension

ToJSON Dimension Source # 
Instance details

Defined in Amazonka.MwAA.Types.Dimension

type Rep Dimension Source # 
Instance details

Defined in Amazonka.MwAA.Types.Dimension

type Rep Dimension = D1 ('MetaData "Dimension" "Amazonka.MwAA.Types.Dimension" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "Dimension'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "value") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDimension Source #

Create a value of Dimension with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:name:Dimension', dimension_name - Internal only API.

$sel:value:Dimension', dimension_value - Internal only API.

Environment

data Environment Source #

The Amazon Managed Workflows for Apache Airflow (MWAA) environment.

See: newEnvironment smart constructor.

Instances

Instances details
Eq Environment Source # 
Instance details

Defined in Amazonka.MwAA.Types.Environment

Read Environment Source # 
Instance details

Defined in Amazonka.MwAA.Types.Environment

Show Environment Source # 
Instance details

Defined in Amazonka.MwAA.Types.Environment

Generic Environment Source # 
Instance details

Defined in Amazonka.MwAA.Types.Environment

Associated Types

type Rep Environment :: Type -> Type #

NFData Environment Source # 
Instance details

Defined in Amazonka.MwAA.Types.Environment

Methods

rnf :: Environment -> () #

Hashable Environment Source # 
Instance details

Defined in Amazonka.MwAA.Types.Environment

FromJSON Environment Source # 
Instance details

Defined in Amazonka.MwAA.Types.Environment

type Rep Environment Source # 
Instance details

Defined in Amazonka.MwAA.Types.Environment

type Rep Environment = D1 ('MetaData "Environment" "Amazonka.MwAA.Types.Environment" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "Environment'" 'PrefixI 'True) ((((S1 ('MetaSel ('Just "serviceRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "schedulers") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe EnvironmentStatus)))) :*: (S1 ('MetaSel ('Just "minWorkers") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "pluginsS3Path") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "webserverAccessMode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe WebserverAccessMode))))) :*: ((S1 ('MetaSel ('Just "airflowVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "kmsKey") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "createdAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "weeklyMaintenanceWindowStart") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "executionRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "requirementsS3ObjectVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))) :*: (((S1 ('MetaSel ('Just "lastUpdate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LastUpdate)) :*: (S1 ('MetaSel ('Just "sourceBucketArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "webserverUrl") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "dagS3Path") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "pluginsS3ObjectVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))) :*: ((S1 ('MetaSel ('Just "airflowConfigurationOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: (S1 ('MetaSel ('Just "loggingConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LoggingConfiguration)) :*: S1 ('MetaSel ('Just "environmentClass") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "networkConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe NetworkConfiguration)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text)))) :*: (S1 ('MetaSel ('Just "requirementsS3Path") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxWorkers") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))))))))

newEnvironment :: Environment Source #

Create a value of Environment with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:serviceRoleArn:Environment', environment_serviceRoleArn - The Amazon Resource Name (ARN) for the service-linked role of the environment. To learn more, see Amazon MWAA Service-linked role.

$sel:schedulers:Environment', environment_schedulers - The number of Apache Airflow schedulers that run in your Amazon MWAA environment.

$sel:status:Environment', environment_status - The status of the Amazon MWAA environment. Valid values:

  • CREATING - Indicates the request to create the environment is in progress.
  • CREATE_FAILED - Indicates the request to create the environment failed, and the environment could not be created.
  • AVAILABLE - Indicates the request was successful and the environment is ready to use.
  • UPDATING - Indicates the request to update the environment is in progress.
  • DELETING - Indicates the request to delete the environment is in progress.
  • DELETED - Indicates the request to delete the environment is complete, and the environment has been deleted.
  • UNAVAILABLE - Indicates the request failed, but the environment was unable to rollback and is not in a stable state.
  • UPDATE_FAILED - Indicates the request to update the environment failed, and the environment has rolled back successfully and is ready to use.

We recommend reviewing our troubleshooting guide for a list of common errors and their solutions. To learn more, see Amazon MWAA troubleshooting.

$sel:minWorkers:Environment', environment_minWorkers - The minimum number of workers that run in your environment. For example, 2.

$sel:pluginsS3Path:Environment', environment_pluginsS3Path - The relative path to the plugins.zip file on your Amazon S3 bucket. For example, plugins.zip. To learn more, see Installing custom plugins.

$sel:webserverAccessMode:Environment', environment_webserverAccessMode - The Apache Airflow Web server access mode. To learn more, see Apache Airflow access modes.

$sel:airflowVersion:Environment', environment_airflowVersion - The Apache Airflow version on your environment. For example, v1.10.12.

$sel:kmsKey:Environment', environment_kmsKey - The Key Management Service (KMS) encryption key used to encrypt the data in your environment.

$sel:arn:Environment', environment_arn - The Amazon Resource Name (ARN) of the Amazon MWAA environment.

$sel:createdAt:Environment', environment_createdAt - The day and time the environment was created.

$sel:weeklyMaintenanceWindowStart:Environment', environment_weeklyMaintenanceWindowStart - The day and time of the week that weekly maintenance updates are scheduled. For example: TUE:03:30.

$sel:executionRoleArn:Environment', environment_executionRoleArn - The Amazon Resource Name (ARN) of the execution role in IAM that allows MWAA to access AWS resources in your environment. For example, arn:aws:iam::123456789:role/my-execution-role. To learn more, see Amazon MWAA Execution role.

$sel:requirementsS3ObjectVersion:Environment', environment_requirementsS3ObjectVersion - The version of the requirements.txt file on your Amazon S3 bucket. To learn more, see Installing Python dependencies.

$sel:lastUpdate:Environment', environment_lastUpdate - Undocumented member.

$sel:sourceBucketArn:Environment', environment_sourceBucketArn - The Amazon Resource Name (ARN) of the Amazon S3 bucket where your DAG code and supporting files are stored. For example, arn:aws:s3:::my-airflow-bucket-unique-name. To learn more, see Create an Amazon S3 bucket for Amazon MWAA.

$sel:webserverUrl:Environment', environment_webserverUrl - The Apache Airflow Web server host name for the Amazon MWAA environment. To learn more, see Accessing the Apache Airflow UI.

$sel:dagS3Path:Environment', environment_dagS3Path - The relative path to the DAGs folder on your Amazon S3 bucket. For example, dags. To learn more, see Adding or updating DAGs.

$sel:name:Environment', environment_name - The name of the Amazon MWAA environment. For example, MyMWAAEnvironment.

$sel:pluginsS3ObjectVersion:Environment', environment_pluginsS3ObjectVersion - The version of the plugins.zip file on your Amazon S3 bucket. To learn more, see Installing custom plugins.

$sel:airflowConfigurationOptions:Environment', environment_airflowConfigurationOptions - A list of key-value pairs containing the Apache Airflow configuration options attached to your environment. To learn more, see Apache Airflow configuration options.

$sel:loggingConfiguration:Environment', environment_loggingConfiguration - The Apache Airflow logs being sent to CloudWatch Logs: DagProcessingLogs, SchedulerLogs, TaskLogs, WebserverLogs, WorkerLogs.

$sel:environmentClass:Environment', environment_environmentClass - The environment class type. Valid values: mw1.small, mw1.medium, mw1.large. To learn more, see Amazon MWAA environment class.

$sel:networkConfiguration:Environment', environment_networkConfiguration - Undocumented member.

$sel:tags:Environment', environment_tags - The key-value tag pairs associated to your environment. For example, "Environment": "Staging". To learn more, see Tagging AWS resources.

$sel:requirementsS3Path:Environment', environment_requirementsS3Path - The relative path to the requirements.txt file on your Amazon S3 bucket. For example, requirements.txt. To learn more, see Installing Python dependencies.

$sel:maxWorkers:Environment', environment_maxWorkers - The maximum number of workers that run in your environment. For example, 20.

LastUpdate

data LastUpdate Source #

The status of the last update on the environment, and any errors that were encountered.

See: newLastUpdate smart constructor.

Instances

Instances details
Eq LastUpdate Source # 
Instance details

Defined in Amazonka.MwAA.Types.LastUpdate

Read LastUpdate Source # 
Instance details

Defined in Amazonka.MwAA.Types.LastUpdate

Show LastUpdate Source # 
Instance details

Defined in Amazonka.MwAA.Types.LastUpdate

Generic LastUpdate Source # 
Instance details

Defined in Amazonka.MwAA.Types.LastUpdate

Associated Types

type Rep LastUpdate :: Type -> Type #

NFData LastUpdate Source # 
Instance details

Defined in Amazonka.MwAA.Types.LastUpdate

Methods

rnf :: LastUpdate -> () #

Hashable LastUpdate Source # 
Instance details

Defined in Amazonka.MwAA.Types.LastUpdate

FromJSON LastUpdate Source # 
Instance details

Defined in Amazonka.MwAA.Types.LastUpdate

type Rep LastUpdate Source # 
Instance details

Defined in Amazonka.MwAA.Types.LastUpdate

type Rep LastUpdate = D1 ('MetaData "LastUpdate" "Amazonka.MwAA.Types.LastUpdate" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "LastUpdate'" 'PrefixI 'True) (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe UpdateStatus)) :*: (S1 ('MetaSel ('Just "createdAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "error") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe UpdateError)))))

newLastUpdate :: LastUpdate Source #

Create a value of LastUpdate with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:status:LastUpdate', lastUpdate_status - The status of the last update on the environment. Valid values: SUCCESS, PENDING, FAILED.

$sel:createdAt:LastUpdate', lastUpdate_createdAt - The day and time of the last update on the environment.

$sel:error:LastUpdate', lastUpdate_error - The error that was encountered during the last update of the environment.

LoggingConfiguration

data LoggingConfiguration Source #

Defines the Apache Airflow logs to send to CloudWatch Logs: DagProcessingLogs, SchedulerLogs, TaskLogs, WebserverLogs, WorkerLogs.

See: newLoggingConfiguration smart constructor.

Instances

Instances details
Eq LoggingConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingConfiguration

Read LoggingConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingConfiguration

Show LoggingConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingConfiguration

Generic LoggingConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingConfiguration

Associated Types

type Rep LoggingConfiguration :: Type -> Type #

NFData LoggingConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingConfiguration

Methods

rnf :: LoggingConfiguration -> () #

Hashable LoggingConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingConfiguration

FromJSON LoggingConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingConfiguration

type Rep LoggingConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingConfiguration

newLoggingConfiguration :: LoggingConfiguration Source #

Create a value of LoggingConfiguration with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:taskLogs:LoggingConfiguration', loggingConfiguration_taskLogs - Undocumented member.

$sel:webserverLogs:LoggingConfiguration', loggingConfiguration_webserverLogs - Undocumented member.

$sel:schedulerLogs:LoggingConfiguration', loggingConfiguration_schedulerLogs - Undocumented member.

$sel:dagProcessingLogs:LoggingConfiguration', loggingConfiguration_dagProcessingLogs - Undocumented member.

$sel:workerLogs:LoggingConfiguration', loggingConfiguration_workerLogs - Undocumented member.

LoggingConfigurationInput

data LoggingConfigurationInput Source #

Defines the Apache Airflow logs to send to CloudWatch Logs: DagProcessingLogs, SchedulerLogs, TaskLogs, WebserverLogs, WorkerLogs.

See: newLoggingConfigurationInput smart constructor.

Instances

Instances details
Eq LoggingConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingConfigurationInput

Read LoggingConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingConfigurationInput

Show LoggingConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingConfigurationInput

Generic LoggingConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingConfigurationInput

Associated Types

type Rep LoggingConfigurationInput :: Type -> Type #

NFData LoggingConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingConfigurationInput

Hashable LoggingConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingConfigurationInput

ToJSON LoggingConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingConfigurationInput

type Rep LoggingConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.LoggingConfigurationInput

MetricDatum

data MetricDatum Source #

Internal only API.

See: newMetricDatum smart constructor.

Instances

Instances details
Eq MetricDatum Source # 
Instance details

Defined in Amazonka.MwAA.Types.MetricDatum

Read MetricDatum Source # 
Instance details

Defined in Amazonka.MwAA.Types.MetricDatum

Show MetricDatum Source # 
Instance details

Defined in Amazonka.MwAA.Types.MetricDatum

Generic MetricDatum Source # 
Instance details

Defined in Amazonka.MwAA.Types.MetricDatum

Associated Types

type Rep MetricDatum :: Type -> Type #

NFData MetricDatum Source # 
Instance details

Defined in Amazonka.MwAA.Types.MetricDatum

Methods

rnf :: MetricDatum -> () #

Hashable MetricDatum Source # 
Instance details

Defined in Amazonka.MwAA.Types.MetricDatum

ToJSON MetricDatum Source # 
Instance details

Defined in Amazonka.MwAA.Types.MetricDatum

type Rep MetricDatum Source # 
Instance details

Defined in Amazonka.MwAA.Types.MetricDatum

newMetricDatum Source #

Create a value of MetricDatum with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:value:MetricDatum', metricDatum_value - Internal only API.

$sel:dimensions:MetricDatum', metricDatum_dimensions - Internal only API.

$sel:unit:MetricDatum', metricDatum_unit - Undocumented member.

$sel:statisticValues:MetricDatum', metricDatum_statisticValues - Internal only API.

$sel:metricName:MetricDatum', metricDatum_metricName - Internal only API.

$sel:timestamp:MetricDatum', metricDatum_timestamp - Internal only API.

ModuleLoggingConfiguration

data ModuleLoggingConfiguration Source #

Defines the type of logs to send for the Apache Airflow log type (e.g. DagProcessingLogs). Valid values: CloudWatchLogGroupArn, Enabled, LogLevel.

See: newModuleLoggingConfiguration smart constructor.

Instances

Instances details
Eq ModuleLoggingConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.ModuleLoggingConfiguration

Read ModuleLoggingConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.ModuleLoggingConfiguration

Show ModuleLoggingConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.ModuleLoggingConfiguration

Generic ModuleLoggingConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.ModuleLoggingConfiguration

Associated Types

type Rep ModuleLoggingConfiguration :: Type -> Type #

NFData ModuleLoggingConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.ModuleLoggingConfiguration

Hashable ModuleLoggingConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.ModuleLoggingConfiguration

FromJSON ModuleLoggingConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.ModuleLoggingConfiguration

type Rep ModuleLoggingConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.ModuleLoggingConfiguration

type Rep ModuleLoggingConfiguration = D1 ('MetaData "ModuleLoggingConfiguration" "Amazonka.MwAA.Types.ModuleLoggingConfiguration" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "ModuleLoggingConfiguration'" 'PrefixI 'True) (S1 ('MetaSel ('Just "logLevel") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LoggingLevel)) :*: (S1 ('MetaSel ('Just "enabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "cloudWatchLogGroupArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newModuleLoggingConfiguration :: ModuleLoggingConfiguration Source #

Create a value of ModuleLoggingConfiguration with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:logLevel:ModuleLoggingConfiguration', moduleLoggingConfiguration_logLevel - Defines the Apache Airflow logs to send for the log type (e.g. DagProcessingLogs) to CloudWatch Logs. Valid values: CRITICAL, ERROR, WARNING, INFO.

$sel:enabled:ModuleLoggingConfiguration', moduleLoggingConfiguration_enabled - Indicates whether to enable the Apache Airflow log type (e.g. DagProcessingLogs) in CloudWatch Logs.

$sel:cloudWatchLogGroupArn:ModuleLoggingConfiguration', moduleLoggingConfiguration_cloudWatchLogGroupArn - The Amazon Resource Name (ARN) for the CloudWatch Logs group where the Apache Airflow log type (e.g. DagProcessingLogs) is published. For example, arn:aws:logs:us-east-1:123456789012:log-group:airflow-MyMWAAEnvironment-MwaaEnvironment-DAGProcessing:*.

ModuleLoggingConfigurationInput

data ModuleLoggingConfigurationInput Source #

Defines the type of logs to send for the Apache Airflow log type (e.g. DagProcessingLogs). Valid values: CloudWatchLogGroupArn, Enabled, LogLevel.

See: newModuleLoggingConfigurationInput smart constructor.

Instances

Instances details
Eq ModuleLoggingConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.ModuleLoggingConfigurationInput

Read ModuleLoggingConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.ModuleLoggingConfigurationInput

Show ModuleLoggingConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.ModuleLoggingConfigurationInput

Generic ModuleLoggingConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.ModuleLoggingConfigurationInput

Associated Types

type Rep ModuleLoggingConfigurationInput :: Type -> Type #

NFData ModuleLoggingConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.ModuleLoggingConfigurationInput

Hashable ModuleLoggingConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.ModuleLoggingConfigurationInput

ToJSON ModuleLoggingConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.ModuleLoggingConfigurationInput

type Rep ModuleLoggingConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.ModuleLoggingConfigurationInput

type Rep ModuleLoggingConfigurationInput = D1 ('MetaData "ModuleLoggingConfigurationInput" "Amazonka.MwAA.Types.ModuleLoggingConfigurationInput" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "ModuleLoggingConfigurationInput'" 'PrefixI 'True) (S1 ('MetaSel ('Just "enabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool) :*: S1 ('MetaSel ('Just "logLevel") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 LoggingLevel)))

newModuleLoggingConfigurationInput Source #

Create a value of ModuleLoggingConfigurationInput with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:enabled:ModuleLoggingConfigurationInput', moduleLoggingConfigurationInput_enabled - Indicates whether to enable the Apache Airflow log type (e.g. DagProcessingLogs) in CloudWatch Logs.

$sel:logLevel:ModuleLoggingConfigurationInput', moduleLoggingConfigurationInput_logLevel - Defines the Apache Airflow logs to send for the log type (e.g. DagProcessingLogs) to CloudWatch Logs. Valid values: CRITICAL, ERROR, WARNING, INFO.

NetworkConfiguration

data NetworkConfiguration Source #

The VPC networking components used to secure and enable network traffic between the AWS resources for your environment. To learn more, see About networking on Amazon MWAA.

See: newNetworkConfiguration smart constructor.

Instances

Instances details
Eq NetworkConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.NetworkConfiguration

Read NetworkConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.NetworkConfiguration

Show NetworkConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.NetworkConfiguration

Generic NetworkConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.NetworkConfiguration

Associated Types

type Rep NetworkConfiguration :: Type -> Type #

NFData NetworkConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.NetworkConfiguration

Methods

rnf :: NetworkConfiguration -> () #

Hashable NetworkConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.NetworkConfiguration

ToJSON NetworkConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.NetworkConfiguration

FromJSON NetworkConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.NetworkConfiguration

type Rep NetworkConfiguration Source # 
Instance details

Defined in Amazonka.MwAA.Types.NetworkConfiguration

type Rep NetworkConfiguration = D1 ('MetaData "NetworkConfiguration" "Amazonka.MwAA.Types.NetworkConfiguration" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "NetworkConfiguration'" 'PrefixI 'True) (S1 ('MetaSel ('Just "securityGroupIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Text))) :*: S1 ('MetaSel ('Just "subnetIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Text)))))

newNetworkConfiguration :: NetworkConfiguration Source #

Create a value of NetworkConfiguration with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:securityGroupIds:NetworkConfiguration', networkConfiguration_securityGroupIds - A list of 1 or more security group IDs. Accepts up to 5 security group IDs. A security group must be attached to the same VPC as the subnets. To learn more, see Security in your VPC on Amazon MWAA.

$sel:subnetIds:NetworkConfiguration', networkConfiguration_subnetIds - A list of 2 subnet IDs. Required to create an environment. Must be private subnets in two different availability zones. A subnet must be attached to the same VPC as the security group.

StatisticSet

data StatisticSet Source #

Internal only API.

See: newStatisticSet smart constructor.

Instances

Instances details
Eq StatisticSet Source # 
Instance details

Defined in Amazonka.MwAA.Types.StatisticSet

Read StatisticSet Source # 
Instance details

Defined in Amazonka.MwAA.Types.StatisticSet

Show StatisticSet Source # 
Instance details

Defined in Amazonka.MwAA.Types.StatisticSet

Generic StatisticSet Source # 
Instance details

Defined in Amazonka.MwAA.Types.StatisticSet

Associated Types

type Rep StatisticSet :: Type -> Type #

NFData StatisticSet Source # 
Instance details

Defined in Amazonka.MwAA.Types.StatisticSet

Methods

rnf :: StatisticSet -> () #

Hashable StatisticSet Source # 
Instance details

Defined in Amazonka.MwAA.Types.StatisticSet

ToJSON StatisticSet Source # 
Instance details

Defined in Amazonka.MwAA.Types.StatisticSet

type Rep StatisticSet Source # 
Instance details

Defined in Amazonka.MwAA.Types.StatisticSet

type Rep StatisticSet = D1 ('MetaData "StatisticSet" "Amazonka.MwAA.Types.StatisticSet" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "StatisticSet'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "sampleCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "maximum") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double))) :*: (S1 ('MetaSel ('Just "minimum") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: S1 ('MetaSel ('Just "sum") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)))))

newStatisticSet :: StatisticSet Source #

Create a value of StatisticSet with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:sampleCount:StatisticSet', statisticSet_sampleCount - Internal only API.

$sel:maximum:StatisticSet', statisticSet_maximum - Internal only API.

$sel:minimum:StatisticSet', statisticSet_minimum - Internal only API.

$sel:sum:StatisticSet', statisticSet_sum - Internal only API.

UpdateError

data UpdateError Source #

An object containing the error encountered with the last update: ErrorCode, ErrorMessage.

See: newUpdateError smart constructor.

Constructors

UpdateError' (Maybe Text) (Maybe Text) 

Instances

Instances details
Eq UpdateError Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateError

Read UpdateError Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateError

Show UpdateError Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateError

Generic UpdateError Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateError

Associated Types

type Rep UpdateError :: Type -> Type #

NFData UpdateError Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateError

Methods

rnf :: UpdateError -> () #

Hashable UpdateError Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateError

FromJSON UpdateError Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateError

type Rep UpdateError Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateError

type Rep UpdateError = D1 ('MetaData "UpdateError" "Amazonka.MwAA.Types.UpdateError" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "UpdateError'" 'PrefixI 'True) (S1 ('MetaSel ('Just "errorCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "errorMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newUpdateError :: UpdateError Source #

Create a value of UpdateError with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:errorCode:UpdateError', updateError_errorCode - The error code that corresponds to the error with the last update.

$sel:errorMessage:UpdateError', updateError_errorMessage - The error message that corresponds to the error code.

UpdateNetworkConfigurationInput

data UpdateNetworkConfigurationInput Source #

The VPC networking components used to secure and enable network traffic between the AWS resources for your environment. To learn more, see About networking on Amazon MWAA.

See: newUpdateNetworkConfigurationInput smart constructor.

Instances

Instances details
Eq UpdateNetworkConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateNetworkConfigurationInput

Read UpdateNetworkConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateNetworkConfigurationInput

Show UpdateNetworkConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateNetworkConfigurationInput

Generic UpdateNetworkConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateNetworkConfigurationInput

Associated Types

type Rep UpdateNetworkConfigurationInput :: Type -> Type #

NFData UpdateNetworkConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateNetworkConfigurationInput

Hashable UpdateNetworkConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateNetworkConfigurationInput

ToJSON UpdateNetworkConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateNetworkConfigurationInput

type Rep UpdateNetworkConfigurationInput Source # 
Instance details

Defined in Amazonka.MwAA.Types.UpdateNetworkConfigurationInput

type Rep UpdateNetworkConfigurationInput = D1 ('MetaData "UpdateNetworkConfigurationInput" "Amazonka.MwAA.Types.UpdateNetworkConfigurationInput" "libZSservicesZSamazonka-mwaaZSamazonka-mwaa" 'False) (C1 ('MetaCons "UpdateNetworkConfigurationInput'" 'PrefixI 'True) (S1 ('MetaSel ('Just "securityGroupIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text))))

newUpdateNetworkConfigurationInput Source #

Create a value of UpdateNetworkConfigurationInput with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:securityGroupIds:UpdateNetworkConfigurationInput', updateNetworkConfigurationInput_securityGroupIds - A list of 1 or more security group IDs. Accepts up to 5 security group IDs. A security group must be attached to the same VPC as the subnets. To learn more, see Security in your VPC on Amazon MWAA.