Metadata-Version: 2.1
Name: mypy-boto3-glue
Version: 1.17.101.post1
Summary: Type annotations for boto3.Glue 1.17.101 service, generated by mypy-boto3-buider 4.20.0
Home-page: https://github.com/vemel/mypy_boto3_builder
Author: Vlad Emelianov
Author-email: vlad.emelianov.nz@gmail.com
License: MIT License
Project-URL: Documentation, https://mypy-boto3-builder.readthedocs.io/en/latest/
Project-URL: Source, https://github.com/vemel/mypy_boto3_builder
Project-URL: Tracker, https://github.com/vemel/mypy_boto3_builder/issues
Keywords: boto3 glue type-annotations boto3-stubs mypy typeshed autocomplete auto-generated
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Typing :: Typed
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: typing-extensions ; python_version < "3.8"

<a id="mypy-boto3-glue"></a>

# mypy-boto3-glue

[![PyPI - mypy-boto3-glue](https://img.shields.io/pypi/v/mypy-boto3-glue.svg?color=blue)](https://pypi.org/project/mypy-boto3-glue)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mypy-boto3-glue.svg?color=blue)](https://pypi.org/project/mypy-boto3-glue)
[![Docs](https://img.shields.io/readthedocs/mypy-boto3-builder.svg?color=blue)](https://mypy-boto3-builder.readthedocs.io/)
[![PyPI - Downloads](https://img.shields.io/pypi/dw/mypy-boto3-glue?color=blue)](https://pypistats.org/packages/mypy-boto3-glue)

![boto3.typed](https://github.com/vemel/mypy_boto3_builder/raw/master/logo.png)

Type annotations for
[boto3.Glue 1.17.101](https://boto3.amazonaws.com/v1/documentation/api/1.17.101/reference/services/glue.html#Glue)
service compatible with [VSCode](https://code.visualstudio.com/),
[PyCharm](https://www.jetbrains.com/pycharm/),
[Emacs](https://www.gnu.org/software/emacs/),
[Sublime Text](https://www.sublimetext.com/),
[mypy](https://github.com/python/mypy),
[pyright](https://github.com/microsoft/pyright) and other tools.

Generated by
[mypy-boto3-buider 4.20.0](https://github.com/vemel/mypy_boto3_builder).

More information can be found on
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
[mypy-boto3-glue docs](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_glue/)

See how it helps to find and fix potential bugs:

![boto3-stubs demo](https://github.com/vemel/mypy_boto3_builder/raw/master/demo.gif)

- [mypy-boto3-glue](#mypy-boto3-glue)
  - [How to install](#how-to-install)
  - [Usage](#usage)
    - [VSCode](#vscode)
    - [PyCharm](#pycharm)
    - [Other IDEs](#other-ides)
    - [mypy](#mypy)
    - [pyright](#pyright)
  - [Explicit type annotations](#explicit-type-annotations)
    - [Client annotations](#client-annotations)
    - [Paginators annotations](#paginators-annotations)
    - [Literals](#literals)
    - [Typed dictionaries](#typed-dictionaries)
  - [Versioning](#versioning)
  - [Documentation](#documentation)
  - [Support and contributing](#support-and-contributing)

<a id="how-to-install"></a>

## How to install

Install `boto3-stubs` for `Glue` service.

```bash
python -m pip install boto3-stubs[glue]
```

<a id="usage"></a>

## Usage

<a id="vscode"></a>

### VSCode

- Install
  [Python extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python)
- Install
  [Pylance extension](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance)
- Set `Pylance` as your Python Language Server
- Install `boto-stubs[glue]` in your environment:
  `python -m pip install 'boto3-stubs[glue]'`

Both type checking and auto-complete should work for `Glue` service. No
explicit type annotations required, write your `boto3` code as usual.

<a id="pycharm"></a>

### PyCharm

- Install `boto-stubs[glue]` in your environment:
  `python -m pip install 'boto3-stubs[glue]'`

Both type checking and auto-complete should work for `Glue` service. No
explicit type annotations required, write your `boto3` code as usual.
Auto-complete can be slow on big projects or if you have a lot of installed
`boto3-stubs` submodules.

<a id="other-ides"></a>

### Other IDEs

Not tested, but as long as your IDE support `mypy` or `pyright`, everything
should work.

<a id="mypy"></a>

### mypy

- Install `mypy`: `python -m pip install mypy`
- Install `boto-stubs[glue]` in your environment:
  `python -m pip install 'boto3-stubs[glue]'`
- Run `mypy` as usual

Type checking should work for `Glue` service. No explicit type annotations
required, write your `boto3` code as usual.

<a id="pyright"></a>

### pyright

- Install `pyright`: `yarn global add pyright`
- Install `boto-stubs[glue]` in your environment:
  `python -m pip install 'boto3-stubs[glue]'`
- Optionally, you can install `boto3-stubs` to `typings` folder.

Type checking should work for `Glue` service. No explicit type annotations
required, write your `boto3` code as usual.

<a id="explicit-type-annotations"></a>

## Explicit type annotations

<a id="client-annotations"></a>

### Client annotations

`GlueClient` provides annotations for `boto3.client("glue")`.

```python
import boto3

from mypy_boto3_glue import GlueClient

client: GlueClient = boto3.client("glue")

# now client usage is checked by mypy and IDE should provide code auto-complete

# works for session as well
session = boto3.session.Session(region="us-west-1")
session_client: GlueClient = session.client("glue")
```

<a id="paginators-annotations"></a>

### Paginators annotations

`mypy_boto3_glue.paginator` module contains type annotations for all
paginators.

```python
from mypy_boto3_glue import GlueClient
from mypy_boto3_glue.paginator import (
    GetClassifiersPaginator,
    GetConnectionsPaginator,
    GetCrawlerMetricsPaginator,
    GetCrawlersPaginator,
    GetDatabasesPaginator,
    GetDevEndpointsPaginator,
    GetJobRunsPaginator,
    GetJobsPaginator,
    GetPartitionIndexesPaginator,
    GetPartitionsPaginator,
    GetResourcePoliciesPaginator,
    GetSecurityConfigurationsPaginator,
    GetTableVersionsPaginator,
    GetTablesPaginator,
    GetTriggersPaginator,
    GetUserDefinedFunctionsPaginator,
    ListRegistriesPaginator,
    ListSchemaVersionsPaginator,
    ListSchemasPaginator,
)

client: GlueClient = boto3.client("glue")

# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
# VSCode requires explicit type annotations
get_classifiers_paginator: GetClassifiersPaginator = client.get_paginator("get_classifiers")
get_connections_paginator: GetConnectionsPaginator = client.get_paginator("get_connections")
get_crawler_metrics_paginator: GetCrawlerMetricsPaginator = client.get_paginator("get_crawler_metrics")
get_crawlers_paginator: GetCrawlersPaginator = client.get_paginator("get_crawlers")
get_databases_paginator: GetDatabasesPaginator = client.get_paginator("get_databases")
get_dev_endpoints_paginator: GetDevEndpointsPaginator = client.get_paginator("get_dev_endpoints")
get_job_runs_paginator: GetJobRunsPaginator = client.get_paginator("get_job_runs")
get_jobs_paginator: GetJobsPaginator = client.get_paginator("get_jobs")
get_partition_indexes_paginator: GetPartitionIndexesPaginator = client.get_paginator("get_partition_indexes")
get_partitions_paginator: GetPartitionsPaginator = client.get_paginator("get_partitions")
get_resource_policies_paginator: GetResourcePoliciesPaginator = client.get_paginator("get_resource_policies")
get_security_configurations_paginator: GetSecurityConfigurationsPaginator = client.get_paginator("get_security_configurations")
get_table_versions_paginator: GetTableVersionsPaginator = client.get_paginator("get_table_versions")
get_tables_paginator: GetTablesPaginator = client.get_paginator("get_tables")
get_triggers_paginator: GetTriggersPaginator = client.get_paginator("get_triggers")
get_user_defined_functions_paginator: GetUserDefinedFunctionsPaginator = client.get_paginator("get_user_defined_functions")
list_registries_paginator: ListRegistriesPaginator = client.get_paginator("list_registries")
list_schema_versions_paginator: ListSchemaVersionsPaginator = client.get_paginator("list_schema_versions")
list_schemas_paginator: ListSchemasPaginator = client.get_paginator("list_schemas")
```

<a id="literals"></a>

### Literals

`mypy_boto3_glue.literals` module contains literals extracted from shapes that
can be used in user code for type checking.

```python
from mypy_boto3_glue.literals import (
    BackfillErrorCodeType,
    CatalogEncryptionModeType,
    CloudWatchEncryptionModeType,
    ColumnStatisticsTypeType,
    ComparatorType,
    CompatibilityType,
    ConnectionPropertyKeyType,
    ConnectionTypeType,
    CrawlStateType,
    CrawlerLineageSettingsType,
    CrawlerStateType,
    CsvHeaderOptionType,
    DataFormatType,
    DeleteBehaviorType,
    EnableHybridValuesType,
    ExistConditionType,
    GetClassifiersPaginatorName,
    GetConnectionsPaginatorName,
    GetCrawlerMetricsPaginatorName,
    GetCrawlersPaginatorName,
    GetDatabasesPaginatorName,
    GetDevEndpointsPaginatorName,
    GetJobRunsPaginatorName,
    GetJobsPaginatorName,
    GetPartitionIndexesPaginatorName,
    GetPartitionsPaginatorName,
    GetResourcePoliciesPaginatorName,
    GetSecurityConfigurationsPaginatorName,
    GetTableVersionsPaginatorName,
    GetTablesPaginatorName,
    GetTriggersPaginatorName,
    GetUserDefinedFunctionsPaginatorName,
    JobBookmarksEncryptionModeType,
    JobRunStateType,
    LanguageType,
    LastCrawlStatusType,
    ListRegistriesPaginatorName,
    ListSchemaVersionsPaginatorName,
    ListSchemasPaginatorName,
    LogicalOperatorType,
    LogicalType,
    MLUserDataEncryptionModeStringType,
    NodeTypeType,
    PartitionIndexStatusType,
    PermissionType,
    PrincipalTypeType,
    RecrawlBehaviorType,
    RegistryStatusType,
    ResourceShareTypeType,
    ResourceTypeType,
    S3EncryptionModeType,
    ScheduleStateType,
    SchemaDiffTypeType,
    SchemaStatusType,
    SchemaVersionStatusType,
    SortDirectionTypeType,
    SortType,
    TaskRunSortColumnTypeType,
    TaskStatusTypeType,
    TaskTypeType,
    TransformSortColumnTypeType,
    TransformStatusTypeType,
    TransformTypeType,
    TriggerStateType,
    TriggerTypeType,
    UpdateBehaviorType,
    WorkerTypeType,
    WorkflowRunStatusType,
)

def check_value(value: BackfillErrorCodeType) -> bool:
    ...
```

<a id="typed-dictionaries"></a>

### Typed dictionaries

`mypy_boto3_glue.type_defs` module contains structures and shapes assembled to
typed dictionaries for additional type checking.

```python
from mypy_boto3_glue.type_defs import (
    ActionTypeDef,
    BackfillErrorTypeDef,
    BatchCreatePartitionRequestTypeDef,
    BatchCreatePartitionResponseResponseTypeDef,
    BatchDeleteConnectionRequestTypeDef,
    BatchDeleteConnectionResponseResponseTypeDef,
    BatchDeletePartitionRequestTypeDef,
    BatchDeletePartitionResponseResponseTypeDef,
    BatchDeleteTableRequestTypeDef,
    BatchDeleteTableResponseResponseTypeDef,
    BatchDeleteTableVersionRequestTypeDef,
    BatchDeleteTableVersionResponseResponseTypeDef,
    BatchGetCrawlersRequestTypeDef,
    BatchGetCrawlersResponseResponseTypeDef,
    BatchGetDevEndpointsRequestTypeDef,
    BatchGetDevEndpointsResponseResponseTypeDef,
    BatchGetJobsRequestTypeDef,
    BatchGetJobsResponseResponseTypeDef,
    BatchGetPartitionRequestTypeDef,
    BatchGetPartitionResponseResponseTypeDef,
    BatchGetTriggersRequestTypeDef,
    BatchGetTriggersResponseResponseTypeDef,
    BatchGetWorkflowsRequestTypeDef,
    BatchGetWorkflowsResponseResponseTypeDef,
    BatchStopJobRunErrorTypeDef,
    BatchStopJobRunRequestTypeDef,
    BatchStopJobRunResponseResponseTypeDef,
    BatchStopJobRunSuccessfulSubmissionTypeDef,
    BatchUpdatePartitionFailureEntryTypeDef,
    BatchUpdatePartitionRequestEntryTypeDef,
    BatchUpdatePartitionRequestTypeDef,
    BatchUpdatePartitionResponseResponseTypeDef,
    BinaryColumnStatisticsDataTypeDef,
    BooleanColumnStatisticsDataTypeDef,
    CancelMLTaskRunRequestTypeDef,
    CancelMLTaskRunResponseResponseTypeDef,
    CatalogEntryTypeDef,
    CatalogImportStatusTypeDef,
    CatalogTargetTypeDef,
    CheckSchemaVersionValidityInputTypeDef,
    CheckSchemaVersionValidityResponseResponseTypeDef,
    ClassifierTypeDef,
    CloudWatchEncryptionTypeDef,
    CodeGenEdgeTypeDef,
    CodeGenNodeArgTypeDef,
    CodeGenNodeTypeDef,
    ColumnErrorTypeDef,
    ColumnImportanceTypeDef,
    ColumnStatisticsDataTypeDef,
    ColumnStatisticsErrorTypeDef,
    ColumnStatisticsTypeDef,
    ColumnTypeDef,
    ConditionTypeDef,
    ConfusionMatrixTypeDef,
    ConnectionInputTypeDef,
    ConnectionPasswordEncryptionTypeDef,
    ConnectionTypeDef,
    ConnectionsListTypeDef,
    CrawlTypeDef,
    CrawlerMetricsTypeDef,
    CrawlerNodeDetailsTypeDef,
    CrawlerTargetsTypeDef,
    CrawlerTypeDef,
    CreateClassifierRequestTypeDef,
    CreateConnectionRequestTypeDef,
    CreateCrawlerRequestTypeDef,
    CreateCsvClassifierRequestTypeDef,
    CreateDatabaseRequestTypeDef,
    CreateDevEndpointRequestTypeDef,
    CreateDevEndpointResponseResponseTypeDef,
    CreateGrokClassifierRequestTypeDef,
    CreateJobRequestTypeDef,
    CreateJobResponseResponseTypeDef,
    CreateJsonClassifierRequestTypeDef,
    CreateMLTransformRequestTypeDef,
    CreateMLTransformResponseResponseTypeDef,
    CreatePartitionIndexRequestTypeDef,
    CreatePartitionRequestTypeDef,
    CreateRegistryInputTypeDef,
    CreateRegistryResponseResponseTypeDef,
    CreateSchemaInputTypeDef,
    CreateSchemaResponseResponseTypeDef,
    CreateScriptRequestTypeDef,
    CreateScriptResponseResponseTypeDef,
    CreateSecurityConfigurationRequestTypeDef,
    CreateSecurityConfigurationResponseResponseTypeDef,
    CreateTableRequestTypeDef,
    CreateTriggerRequestTypeDef,
    CreateTriggerResponseResponseTypeDef,
    CreateUserDefinedFunctionRequestTypeDef,
    CreateWorkflowRequestTypeDef,
    CreateWorkflowResponseResponseTypeDef,
    CreateXMLClassifierRequestTypeDef,
    CsvClassifierTypeDef,
    DataCatalogEncryptionSettingsTypeDef,
    DataLakePrincipalTypeDef,
    DatabaseIdentifierTypeDef,
    DatabaseInputTypeDef,
    DatabaseTypeDef,
    DateColumnStatisticsDataTypeDef,
    DecimalColumnStatisticsDataTypeDef,
    DecimalNumberTypeDef,
    DeleteClassifierRequestTypeDef,
    DeleteColumnStatisticsForPartitionRequestTypeDef,
    DeleteColumnStatisticsForTableRequestTypeDef,
    DeleteConnectionRequestTypeDef,
    DeleteCrawlerRequestTypeDef,
    DeleteDatabaseRequestTypeDef,
    DeleteDevEndpointRequestTypeDef,
    DeleteJobRequestTypeDef,
    DeleteJobResponseResponseTypeDef,
    DeleteMLTransformRequestTypeDef,
    DeleteMLTransformResponseResponseTypeDef,
    DeletePartitionIndexRequestTypeDef,
    DeletePartitionRequestTypeDef,
    DeleteRegistryInputTypeDef,
    DeleteRegistryResponseResponseTypeDef,
    DeleteResourcePolicyRequestTypeDef,
    DeleteSchemaInputTypeDef,
    DeleteSchemaResponseResponseTypeDef,
    DeleteSchemaVersionsInputTypeDef,
    DeleteSchemaVersionsResponseResponseTypeDef,
    DeleteSecurityConfigurationRequestTypeDef,
    DeleteTableRequestTypeDef,
    DeleteTableVersionRequestTypeDef,
    DeleteTriggerRequestTypeDef,
    DeleteTriggerResponseResponseTypeDef,
    DeleteUserDefinedFunctionRequestTypeDef,
    DeleteWorkflowRequestTypeDef,
    DeleteWorkflowResponseResponseTypeDef,
    DevEndpointCustomLibrariesTypeDef,
    DevEndpointTypeDef,
    DoubleColumnStatisticsDataTypeDef,
    DynamoDBTargetTypeDef,
    EdgeTypeDef,
    EncryptionAtRestTypeDef,
    EncryptionConfigurationTypeDef,
    ErrorDetailTypeDef,
    ErrorDetailsTypeDef,
    EvaluationMetricsTypeDef,
    ExecutionPropertyTypeDef,
    ExportLabelsTaskRunPropertiesTypeDef,
    FindMatchesMetricsTypeDef,
    FindMatchesParametersTypeDef,
    FindMatchesTaskRunPropertiesTypeDef,
    GetCatalogImportStatusRequestTypeDef,
    GetCatalogImportStatusResponseResponseTypeDef,
    GetClassifierRequestTypeDef,
    GetClassifierResponseResponseTypeDef,
    GetClassifiersRequestTypeDef,
    GetClassifiersResponseResponseTypeDef,
    GetColumnStatisticsForPartitionRequestTypeDef,
    GetColumnStatisticsForPartitionResponseResponseTypeDef,
    GetColumnStatisticsForTableRequestTypeDef,
    GetColumnStatisticsForTableResponseResponseTypeDef,
    GetConnectionRequestTypeDef,
    GetConnectionResponseResponseTypeDef,
    GetConnectionsFilterTypeDef,
    GetConnectionsRequestTypeDef,
    GetConnectionsResponseResponseTypeDef,
    GetCrawlerMetricsRequestTypeDef,
    GetCrawlerMetricsResponseResponseTypeDef,
    GetCrawlerRequestTypeDef,
    GetCrawlerResponseResponseTypeDef,
    GetCrawlersRequestTypeDef,
    GetCrawlersResponseResponseTypeDef,
    GetDataCatalogEncryptionSettingsRequestTypeDef,
    GetDataCatalogEncryptionSettingsResponseResponseTypeDef,
    GetDatabaseRequestTypeDef,
    GetDatabaseResponseResponseTypeDef,
    GetDatabasesRequestTypeDef,
    GetDatabasesResponseResponseTypeDef,
    GetDataflowGraphRequestTypeDef,
    GetDataflowGraphResponseResponseTypeDef,
    GetDevEndpointRequestTypeDef,
    GetDevEndpointResponseResponseTypeDef,
    GetDevEndpointsRequestTypeDef,
    GetDevEndpointsResponseResponseTypeDef,
    GetJobBookmarkRequestTypeDef,
    GetJobBookmarkResponseResponseTypeDef,
    GetJobRequestTypeDef,
    GetJobResponseResponseTypeDef,
    GetJobRunRequestTypeDef,
    GetJobRunResponseResponseTypeDef,
    GetJobRunsRequestTypeDef,
    GetJobRunsResponseResponseTypeDef,
    GetJobsRequestTypeDef,
    GetJobsResponseResponseTypeDef,
    GetMLTaskRunRequestTypeDef,
    GetMLTaskRunResponseResponseTypeDef,
    GetMLTaskRunsRequestTypeDef,
    GetMLTaskRunsResponseResponseTypeDef,
    GetMLTransformRequestTypeDef,
    GetMLTransformResponseResponseTypeDef,
    GetMLTransformsRequestTypeDef,
    GetMLTransformsResponseResponseTypeDef,
    GetMappingRequestTypeDef,
    GetMappingResponseResponseTypeDef,
    GetPartitionIndexesRequestTypeDef,
    GetPartitionIndexesResponseResponseTypeDef,
    GetPartitionRequestTypeDef,
    GetPartitionResponseResponseTypeDef,
    GetPartitionsRequestTypeDef,
    GetPartitionsResponseResponseTypeDef,
    GetPlanRequestTypeDef,
    GetPlanResponseResponseTypeDef,
    GetRegistryInputTypeDef,
    GetRegistryResponseResponseTypeDef,
    GetResourcePoliciesRequestTypeDef,
    GetResourcePoliciesResponseResponseTypeDef,
    GetResourcePolicyRequestTypeDef,
    GetResourcePolicyResponseResponseTypeDef,
    GetSchemaByDefinitionInputTypeDef,
    GetSchemaByDefinitionResponseResponseTypeDef,
    GetSchemaInputTypeDef,
    GetSchemaResponseResponseTypeDef,
    GetSchemaVersionInputTypeDef,
    GetSchemaVersionResponseResponseTypeDef,
    GetSchemaVersionsDiffInputTypeDef,
    GetSchemaVersionsDiffResponseResponseTypeDef,
    GetSecurityConfigurationRequestTypeDef,
    GetSecurityConfigurationResponseResponseTypeDef,
    GetSecurityConfigurationsRequestTypeDef,
    GetSecurityConfigurationsResponseResponseTypeDef,
    GetTableRequestTypeDef,
    GetTableResponseResponseTypeDef,
    GetTableVersionRequestTypeDef,
    GetTableVersionResponseResponseTypeDef,
    GetTableVersionsRequestTypeDef,
    GetTableVersionsResponseResponseTypeDef,
    GetTablesRequestTypeDef,
    GetTablesResponseResponseTypeDef,
    GetTagsRequestTypeDef,
    GetTagsResponseResponseTypeDef,
    GetTriggerRequestTypeDef,
    GetTriggerResponseResponseTypeDef,
    GetTriggersRequestTypeDef,
    GetTriggersResponseResponseTypeDef,
    GetUserDefinedFunctionRequestTypeDef,
    GetUserDefinedFunctionResponseResponseTypeDef,
    GetUserDefinedFunctionsRequestTypeDef,
    GetUserDefinedFunctionsResponseResponseTypeDef,
    GetWorkflowRequestTypeDef,
    GetWorkflowResponseResponseTypeDef,
    GetWorkflowRunPropertiesRequestTypeDef,
    GetWorkflowRunPropertiesResponseResponseTypeDef,
    GetWorkflowRunRequestTypeDef,
    GetWorkflowRunResponseResponseTypeDef,
    GetWorkflowRunsRequestTypeDef,
    GetWorkflowRunsResponseResponseTypeDef,
    GluePolicyTypeDef,
    GlueTableTypeDef,
    GrokClassifierTypeDef,
    ImportCatalogToGlueRequestTypeDef,
    ImportLabelsTaskRunPropertiesTypeDef,
    JdbcTargetTypeDef,
    JobBookmarkEntryTypeDef,
    JobBookmarksEncryptionTypeDef,
    JobCommandTypeDef,
    JobNodeDetailsTypeDef,
    JobRunTypeDef,
    JobTypeDef,
    JobUpdateTypeDef,
    JsonClassifierTypeDef,
    KeySchemaElementTypeDef,
    LabelingSetGenerationTaskRunPropertiesTypeDef,
    LastCrawlInfoTypeDef,
    LineageConfigurationTypeDef,
    ListCrawlersRequestTypeDef,
    ListCrawlersResponseResponseTypeDef,
    ListDevEndpointsRequestTypeDef,
    ListDevEndpointsResponseResponseTypeDef,
    ListJobsRequestTypeDef,
    ListJobsResponseResponseTypeDef,
    ListMLTransformsRequestTypeDef,
    ListMLTransformsResponseResponseTypeDef,
    ListRegistriesInputTypeDef,
    ListRegistriesResponseResponseTypeDef,
    ListSchemaVersionsInputTypeDef,
    ListSchemaVersionsResponseResponseTypeDef,
    ListSchemasInputTypeDef,
    ListSchemasResponseResponseTypeDef,
    ListTriggersRequestTypeDef,
    ListTriggersResponseResponseTypeDef,
    ListWorkflowsRequestTypeDef,
    ListWorkflowsResponseResponseTypeDef,
    LocationTypeDef,
    LongColumnStatisticsDataTypeDef,
    MLTransformTypeDef,
    MLUserDataEncryptionTypeDef,
    MappingEntryTypeDef,
    MetadataInfoTypeDef,
    MetadataKeyValuePairTypeDef,
    MongoDBTargetTypeDef,
    NodeTypeDef,
    NotificationPropertyTypeDef,
    OrderTypeDef,
    OtherMetadataValueListItemTypeDef,
    PaginatorConfigTypeDef,
    PartitionErrorTypeDef,
    PartitionIndexDescriptorTypeDef,
    PartitionIndexTypeDef,
    PartitionInputTypeDef,
    PartitionTypeDef,
    PartitionValueListTypeDef,
    PhysicalConnectionRequirementsTypeDef,
    PredecessorTypeDef,
    PredicateTypeDef,
    PrincipalPermissionsTypeDef,
    PropertyPredicateTypeDef,
    PutDataCatalogEncryptionSettingsRequestTypeDef,
    PutResourcePolicyRequestTypeDef,
    PutResourcePolicyResponseResponseTypeDef,
    PutSchemaVersionMetadataInputTypeDef,
    PutSchemaVersionMetadataResponseResponseTypeDef,
    PutWorkflowRunPropertiesRequestTypeDef,
    QuerySchemaVersionMetadataInputTypeDef,
    QuerySchemaVersionMetadataResponseResponseTypeDef,
    RecrawlPolicyTypeDef,
    RegisterSchemaVersionInputTypeDef,
    RegisterSchemaVersionResponseResponseTypeDef,
    RegistryIdTypeDef,
    RegistryListItemTypeDef,
    RemoveSchemaVersionMetadataInputTypeDef,
    RemoveSchemaVersionMetadataResponseResponseTypeDef,
    ResetJobBookmarkRequestTypeDef,
    ResetJobBookmarkResponseResponseTypeDef,
    ResourceUriTypeDef,
    ResponseMetadataTypeDef,
    ResumeWorkflowRunRequestTypeDef,
    ResumeWorkflowRunResponseResponseTypeDef,
    S3EncryptionTypeDef,
    S3TargetTypeDef,
    ScheduleTypeDef,
    SchemaChangePolicyTypeDef,
    SchemaColumnTypeDef,
    SchemaIdTypeDef,
    SchemaListItemTypeDef,
    SchemaReferenceTypeDef,
    SchemaVersionErrorItemTypeDef,
    SchemaVersionListItemTypeDef,
    SchemaVersionNumberTypeDef,
    SearchTablesRequestTypeDef,
    SearchTablesResponseResponseTypeDef,
    SecurityConfigurationTypeDef,
    SegmentTypeDef,
    SerDeInfoTypeDef,
    SkewedInfoTypeDef,
    SortCriterionTypeDef,
    StartCrawlerRequestTypeDef,
    StartCrawlerScheduleRequestTypeDef,
    StartExportLabelsTaskRunRequestTypeDef,
    StartExportLabelsTaskRunResponseResponseTypeDef,
    StartImportLabelsTaskRunRequestTypeDef,
    StartImportLabelsTaskRunResponseResponseTypeDef,
    StartJobRunRequestTypeDef,
    StartJobRunResponseResponseTypeDef,
    StartMLEvaluationTaskRunRequestTypeDef,
    StartMLEvaluationTaskRunResponseResponseTypeDef,
    StartMLLabelingSetGenerationTaskRunRequestTypeDef,
    StartMLLabelingSetGenerationTaskRunResponseResponseTypeDef,
    StartTriggerRequestTypeDef,
    StartTriggerResponseResponseTypeDef,
    StartWorkflowRunRequestTypeDef,
    StartWorkflowRunResponseResponseTypeDef,
    StopCrawlerRequestTypeDef,
    StopCrawlerScheduleRequestTypeDef,
    StopTriggerRequestTypeDef,
    StopTriggerResponseResponseTypeDef,
    StopWorkflowRunRequestTypeDef,
    StorageDescriptorTypeDef,
    StringColumnStatisticsDataTypeDef,
    TableErrorTypeDef,
    TableIdentifierTypeDef,
    TableInputTypeDef,
    TableTypeDef,
    TableVersionErrorTypeDef,
    TableVersionTypeDef,
    TagResourceRequestTypeDef,
    TaskRunFilterCriteriaTypeDef,
    TaskRunPropertiesTypeDef,
    TaskRunSortCriteriaTypeDef,
    TaskRunTypeDef,
    TransformEncryptionTypeDef,
    TransformFilterCriteriaTypeDef,
    TransformParametersTypeDef,
    TransformSortCriteriaTypeDef,
    TriggerNodeDetailsTypeDef,
    TriggerTypeDef,
    TriggerUpdateTypeDef,
    UntagResourceRequestTypeDef,
    UpdateClassifierRequestTypeDef,
    UpdateColumnStatisticsForPartitionRequestTypeDef,
    UpdateColumnStatisticsForPartitionResponseResponseTypeDef,
    UpdateColumnStatisticsForTableRequestTypeDef,
    UpdateColumnStatisticsForTableResponseResponseTypeDef,
    UpdateConnectionRequestTypeDef,
    UpdateCrawlerRequestTypeDef,
    UpdateCrawlerScheduleRequestTypeDef,
    UpdateCsvClassifierRequestTypeDef,
    UpdateDatabaseRequestTypeDef,
    UpdateDevEndpointRequestTypeDef,
    UpdateGrokClassifierRequestTypeDef,
    UpdateJobRequestTypeDef,
    UpdateJobResponseResponseTypeDef,
    UpdateJsonClassifierRequestTypeDef,
    UpdateMLTransformRequestTypeDef,
    UpdateMLTransformResponseResponseTypeDef,
    UpdatePartitionRequestTypeDef,
    UpdateRegistryInputTypeDef,
    UpdateRegistryResponseResponseTypeDef,
    UpdateSchemaInputTypeDef,
    UpdateSchemaResponseResponseTypeDef,
    UpdateTableRequestTypeDef,
    UpdateTriggerRequestTypeDef,
    UpdateTriggerResponseResponseTypeDef,
    UpdateUserDefinedFunctionRequestTypeDef,
    UpdateWorkflowRequestTypeDef,
    UpdateWorkflowResponseResponseTypeDef,
    UpdateXMLClassifierRequestTypeDef,
    UserDefinedFunctionInputTypeDef,
    UserDefinedFunctionTypeDef,
    WorkflowGraphTypeDef,
    WorkflowRunStatisticsTypeDef,
    WorkflowRunTypeDef,
    WorkflowTypeDef,
    XMLClassifierTypeDef,
)

def get_structure() -> ActionTypeDef:
    return {
      ...
    }
```

<a id="versioning"></a>

## Versioning

`mypy-boto3-glue` version is the same as related `boto3` version and follows
[PEP 440](https://www.python.org/dev/peps/pep-0440/) format.

<a id="documentation"></a>

## Documentation

All type annotations can be found in
[mypy-boto3-glue docs](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_glue/)

<a id="support-and-contributing"></a>

## Support and contributing

This package is auto-generated. Please reports any bugs or request new features
in [mypy-boto3-builder](https://github.com/vemel/mypy_boto3_builder/issues/)
repository.


