Skip to main content

Type annotations for boto3.Glue 1.26.8 service generated with mypy-boto3-builder 7.11.10

Project description

mypy-boto3-glue

PyPI - mypy-boto3-glue PyPI - Python Version Docs PyPI - Downloads

boto3.typed

Type annotations for boto3.Glue 1.26.8 service compatible with VSCode, PyCharm, Emacs, Sublime Text, mypy, pyright and other tools.

Generated by mypy-boto3-builder 7.11.10.

More information can be found on boto3-stubs page and in mypy-boto3-glue docs.

See how it helps to find and fix potential bugs:

boto3-stubs demo

How to install

VSCode extension

Add AWS Boto3 extension to your VSCode and run AWS boto3: Quick Start command.

Click Modify and select boto3 common and Glue.

From PyPI with pip

Install boto3-stubs for Glue service.

# install with boto3 type annotations
python -m pip install 'boto3-stubs[glue]'


# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'boto3-stubs-lite[glue]'


# standalone installation
python -m pip install mypy-boto3-glue

How to uninstall

python -m pip uninstall -y mypy-boto3-glue

Usage

VSCode

python -m pip install 'boto3-stubs[glue]'

Both type checking and code completion should now work. No explicit type annotations required, write your boto3 code as usual.

PyCharm

Install boto3-stubs-lite[glue] in your environment:

python -m pip install 'boto3-stubs-lite[glue]'`

Both type checking and code completion should now work. Explicit type annotations are required.

Use boto3-stubs package instead for implicit type discovery.

Emacs

  • Install boto3-stubs with services you use in your environment:
python -m pip install 'boto3-stubs[glue]'
(use-package lsp-pyright
  :ensure t
  :hook (python-mode . (lambda ()
                          (require 'lsp-pyright)
                          (lsp)))  ; or lsp-deferred
  :init (when (executable-find "python3")
          (setq lsp-pyright-python-executable-cmd "python3"))
  )
  • Make sure emacs uses the environment where you have installed boto3-stubs

Type checking should now work. No explicit type annotations required, write your boto3 code as usual.

Sublime Text

  • Install boto3-stubs[glue] with services you use in your environment:
python -m pip install 'boto3-stubs[glue]'

Type checking should now work. No explicit type annotations required, write your boto3 code as usual.

Other IDEs

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

mypy

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

Type checking should now work. No explicit type annotations required, write your boto3 code as usual.

pyright

  • Install pyright: npm i -g pyright
  • Install boto3-stubs[glue] in your environment:
python -m pip install 'boto3-stubs[glue]'

Optionally, you can install boto3-stubs to typings folder.

Type checking should now work. No explicit type annotations required, write your boto3 code as usual.

Explicit type annotations

Client annotations

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

from boto3.session import Session

from mypy_boto3_glue import GlueClient

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

# now client usage is checked by mypy and IDE should provide code completion

Paginators annotations

mypy_boto3_glue.paginator module contains type annotations for all paginators.

from boto3.session import Session

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 = Session().client("glue")

# Explicit type annotations are optional here
# Types should be correctly discovered by mypy and IDEs
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")

Literals

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

from mypy_boto3_glue.literals import (
    AggFunctionType,
    BackfillErrorCodeType,
    BlueprintRunStateType,
    BlueprintStatusType,
    CatalogEncryptionModeType,
    CloudWatchEncryptionModeType,
    ColumnStatisticsTypeType,
    ComparatorType,
    CompatibilityType,
    CompressionTypeType,
    ConnectionPropertyKeyType,
    ConnectionTypeType,
    CrawlStateType,
    CrawlerHistoryStateType,
    CrawlerLineageSettingsType,
    CrawlerStateType,
    CsvHeaderOptionType,
    DataFormatType,
    DeleteBehaviorType,
    EnableHybridValuesType,
    ExecutionClassType,
    ExistConditionType,
    FieldNameType,
    FilterLogicalOperatorType,
    FilterOperationType,
    FilterOperatorType,
    FilterValueTypeType,
    GetClassifiersPaginatorName,
    GetConnectionsPaginatorName,
    GetCrawlerMetricsPaginatorName,
    GetCrawlersPaginatorName,
    GetDatabasesPaginatorName,
    GetDevEndpointsPaginatorName,
    GetJobRunsPaginatorName,
    GetJobsPaginatorName,
    GetPartitionIndexesPaginatorName,
    GetPartitionsPaginatorName,
    GetResourcePoliciesPaginatorName,
    GetSecurityConfigurationsPaginatorName,
    GetTableVersionsPaginatorName,
    GetTablesPaginatorName,
    GetTriggersPaginatorName,
    GetUserDefinedFunctionsPaginatorName,
    GlueRecordTypeType,
    JDBCDataTypeType,
    JobBookmarksEncryptionModeType,
    JobRunStateType,
    JoinTypeType,
    LanguageType,
    LastCrawlStatusType,
    ListRegistriesPaginatorName,
    ListSchemaVersionsPaginatorName,
    ListSchemasPaginatorName,
    LogicalOperatorType,
    LogicalType,
    MLUserDataEncryptionModeStringType,
    NodeTypeType,
    ParquetCompressionTypeType,
    PartitionIndexStatusType,
    PermissionType,
    PermissionTypeType,
    PiiTypeType,
    PrincipalTypeType,
    QuoteCharType,
    RecrawlBehaviorType,
    RegistryStatusType,
    ResourceShareTypeType,
    ResourceTypeType,
    S3EncryptionModeType,
    ScheduleStateType,
    SchemaDiffTypeType,
    SchemaStatusType,
    SchemaVersionStatusType,
    SeparatorType,
    SessionStatusType,
    SortDirectionTypeType,
    SortType,
    SourceControlAuthStrategyType,
    SourceControlProviderType,
    StartingPositionType,
    StatementStateType,
    TargetFormatType,
    TaskRunSortColumnTypeType,
    TaskStatusTypeType,
    TaskTypeType,
    TransformSortColumnTypeType,
    TransformStatusTypeType,
    TransformTypeType,
    TriggerStateType,
    TriggerTypeType,
    UnionTypeType,
    UpdateBehaviorType,
    UpdateCatalogBehaviorType,
    WorkerTypeType,
    WorkflowRunStatusType,
    GlueServiceName,
    ServiceName,
    ResourceServiceName,
    PaginatorName,
    RegionName,
)


def check_value(value: AggFunctionType) -> bool:
    ...

Typed dictionaries

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

from mypy_boto3_glue.type_defs import (
    NotificationPropertyTypeDef,
    AggregateOperationTypeDef,
    ApplyMappingTypeDef,
    AuditContextTypeDef,
    PartitionValueListTypeDef,
    BasicCatalogTargetTypeDef,
    ResponseMetadataTypeDef,
    BatchDeleteConnectionRequestRequestTypeDef,
    ErrorDetailTypeDef,
    BatchDeleteTableRequestRequestTypeDef,
    BatchDeleteTableVersionRequestRequestTypeDef,
    BatchGetBlueprintsRequestRequestTypeDef,
    BatchGetCrawlersRequestRequestTypeDef,
    BatchGetCustomEntityTypesRequestRequestTypeDef,
    CustomEntityTypeTypeDef,
    BatchGetDevEndpointsRequestRequestTypeDef,
    DevEndpointTypeDef,
    BatchGetJobsRequestRequestTypeDef,
    BatchGetTriggersRequestRequestTypeDef,
    BatchGetWorkflowsRequestRequestTypeDef,
    BatchStopJobRunRequestRequestTypeDef,
    BatchStopJobRunSuccessfulSubmissionTypeDef,
    BinaryColumnStatisticsDataTypeDef,
    BlueprintDetailsTypeDef,
    BlueprintRunTypeDef,
    LastActiveDefinitionTypeDef,
    BooleanColumnStatisticsDataTypeDef,
    CancelMLTaskRunRequestRequestTypeDef,
    CancelStatementRequestRequestTypeDef,
    CatalogEntryTypeDef,
    CatalogImportStatusTypeDef,
    KafkaStreamingSourceOptionsTypeDef,
    StreamingDataPreviewOptionsTypeDef,
    KinesisStreamingSourceOptionsTypeDef,
    CatalogSchemaChangePolicyTypeDef,
    CatalogSourceTypeDef,
    CatalogTargetTypeDef,
    CheckSchemaVersionValidityInputRequestTypeDef,
    CsvClassifierTypeDef,
    GrokClassifierTypeDef,
    JsonClassifierTypeDef,
    XMLClassifierTypeDef,
    CloudWatchEncryptionTypeDef,
    DropDuplicatesTypeDef,
    DropFieldsTypeDef,
    DynamoDBCatalogSourceTypeDef,
    FillMissingValuesTypeDef,
    MergeTypeDef,
    MicrosoftSQLServerCatalogSourceTypeDef,
    MicrosoftSQLServerCatalogTargetTypeDef,
    MySQLCatalogSourceTypeDef,
    MySQLCatalogTargetTypeDef,
    OracleSQLCatalogSourceTypeDef,
    OracleSQLCatalogTargetTypeDef,
    PIIDetectionTypeDef,
    PostgreSQLCatalogSourceTypeDef,
    PostgreSQLCatalogTargetTypeDef,
    RedshiftSourceTypeDef,
    RelationalCatalogSourceTypeDef,
    RenameFieldTypeDef,
    SelectFieldsTypeDef,
    SelectFromCollectionTypeDef,
    SpigotTypeDef,
    SplitFieldsTypeDef,
    UnionTypeDef,
    CodeGenEdgeTypeDef,
    CodeGenNodeArgTypeDef,
    ColumnImportanceTypeDef,
    ColumnRowFilterTypeDef,
    DateColumnStatisticsDataTypeDef,
    DoubleColumnStatisticsDataTypeDef,
    LongColumnStatisticsDataTypeDef,
    StringColumnStatisticsDataTypeDef,
    ColumnTypeDef,
    ConditionTypeDef,
    ConfusionMatrixTypeDef,
    PhysicalConnectionRequirementsTypeDef,
    ConnectionPasswordEncryptionTypeDef,
    ConnectionsListTypeDef,
    CrawlTypeDef,
    CrawlerHistoryTypeDef,
    CrawlerMetricsTypeDef,
    DeltaTargetTypeDef,
    DynamoDBTargetTypeDef,
    JdbcTargetTypeDef,
    MongoDBTargetTypeDef,
    S3TargetTypeDef,
    LakeFormationConfigurationTypeDef,
    LastCrawlInfoTypeDef,
    LineageConfigurationTypeDef,
    RecrawlPolicyTypeDef,
    ScheduleTypeDef,
    SchemaChangePolicyTypeDef,
    CrawlsFilterTypeDef,
    CreateBlueprintRequestRequestTypeDef,
    CreateCsvClassifierRequestTypeDef,
    CreateGrokClassifierRequestTypeDef,
    CreateJsonClassifierRequestTypeDef,
    CreateXMLClassifierRequestTypeDef,
    CreateCustomEntityTypeRequestRequestTypeDef,
    CreateDevEndpointRequestRequestTypeDef,
    ExecutionPropertyTypeDef,
    JobCommandTypeDef,
    SourceControlDetailsTypeDef,
    GlueTableTypeDef,
    PartitionIndexTypeDef,
    CreateRegistryInputRequestTypeDef,
    RegistryIdTypeDef,
    SessionCommandTypeDef,
    EventBatchingConditionTypeDef,
    CreateWorkflowRequestRequestTypeDef,
    EncryptionAtRestTypeDef,
    DataLakePrincipalTypeDef,
    DatabaseIdentifierTypeDef,
    DatatypeTypeDef,
    DecimalNumberTypeDef,
    DeleteBlueprintRequestRequestTypeDef,
    DeleteClassifierRequestRequestTypeDef,
    DeleteColumnStatisticsForPartitionRequestRequestTypeDef,
    DeleteColumnStatisticsForTableRequestRequestTypeDef,
    DeleteConnectionRequestRequestTypeDef,
    DeleteCrawlerRequestRequestTypeDef,
    DeleteCustomEntityTypeRequestRequestTypeDef,
    DeleteDatabaseRequestRequestTypeDef,
    DeleteDevEndpointRequestRequestTypeDef,
    DeleteJobRequestRequestTypeDef,
    DeleteMLTransformRequestRequestTypeDef,
    DeletePartitionIndexRequestRequestTypeDef,
    DeletePartitionRequestRequestTypeDef,
    DeleteResourcePolicyRequestRequestTypeDef,
    SchemaIdTypeDef,
    DeleteSecurityConfigurationRequestRequestTypeDef,
    DeleteSessionRequestRequestTypeDef,
    DeleteTableRequestRequestTypeDef,
    DeleteTableVersionRequestRequestTypeDef,
    DeleteTriggerRequestRequestTypeDef,
    DeleteUserDefinedFunctionRequestRequestTypeDef,
    DeleteWorkflowRequestRequestTypeDef,
    DevEndpointCustomLibrariesTypeDef,
    DirectSchemaChangePolicyTypeDef,
    NullCheckBoxListTypeDef,
    EdgeTypeDef,
    JobBookmarksEncryptionTypeDef,
    S3EncryptionTypeDef,
    ErrorDetailsTypeDef,
    ExportLabelsTaskRunPropertiesTypeDef,
    FilterValueTypeDef,
    FindMatchesParametersTypeDef,
    FindMatchesTaskRunPropertiesTypeDef,
    GetBlueprintRequestRequestTypeDef,
    GetBlueprintRunRequestRequestTypeDef,
    GetBlueprintRunsRequestRequestTypeDef,
    GetCatalogImportStatusRequestRequestTypeDef,
    GetClassifierRequestRequestTypeDef,
    PaginatorConfigTypeDef,
    GetClassifiersRequestRequestTypeDef,
    GetColumnStatisticsForPartitionRequestRequestTypeDef,
    GetColumnStatisticsForTableRequestRequestTypeDef,
    GetConnectionRequestRequestTypeDef,
    GetConnectionsFilterTypeDef,
    GetCrawlerMetricsRequestRequestTypeDef,
    GetCrawlerRequestRequestTypeDef,
    GetCrawlersRequestRequestTypeDef,
    GetCustomEntityTypeRequestRequestTypeDef,
    GetDataCatalogEncryptionSettingsRequestRequestTypeDef,
    GetDatabaseRequestRequestTypeDef,
    GetDatabasesRequestRequestTypeDef,
    GetDataflowGraphRequestRequestTypeDef,
    GetDevEndpointRequestRequestTypeDef,
    GetDevEndpointsRequestRequestTypeDef,
    GetJobBookmarkRequestRequestTypeDef,
    JobBookmarkEntryTypeDef,
    GetJobRequestRequestTypeDef,
    GetJobRunRequestRequestTypeDef,
    GetJobRunsRequestRequestTypeDef,
    GetJobsRequestRequestTypeDef,
    GetMLTaskRunRequestRequestTypeDef,
    TaskRunFilterCriteriaTypeDef,
    TaskRunSortCriteriaTypeDef,
    GetMLTransformRequestRequestTypeDef,
    SchemaColumnTypeDef,
    TransformSortCriteriaTypeDef,
    MappingEntryTypeDef,
    GetPartitionIndexesRequestRequestTypeDef,
    GetPartitionRequestRequestTypeDef,
    SegmentTypeDef,
    GetResourcePoliciesRequestRequestTypeDef,
    GluePolicyTypeDef,
    GetResourcePolicyRequestRequestTypeDef,
    SchemaVersionNumberTypeDef,
    GetSecurityConfigurationRequestRequestTypeDef,
    GetSecurityConfigurationsRequestRequestTypeDef,
    GetSessionRequestRequestTypeDef,
    GetStatementRequestRequestTypeDef,
    GetTableRequestRequestTypeDef,
    GetTableVersionRequestRequestTypeDef,
    GetTableVersionsRequestRequestTypeDef,
    GetTablesRequestRequestTypeDef,
    GetTagsRequestRequestTypeDef,
    GetTriggerRequestRequestTypeDef,
    GetTriggersRequestRequestTypeDef,
    GetUserDefinedFunctionRequestRequestTypeDef,
    GetUserDefinedFunctionsRequestRequestTypeDef,
    GetWorkflowRequestRequestTypeDef,
    GetWorkflowRunPropertiesRequestRequestTypeDef,
    GetWorkflowRunRequestRequestTypeDef,
    GetWorkflowRunsRequestRequestTypeDef,
    GlueStudioSchemaColumnTypeDef,
    S3SourceAdditionalOptionsTypeDef,
    ImportCatalogToGlueRequestRequestTypeDef,
    ImportLabelsTaskRunPropertiesTypeDef,
    JDBCConnectorOptionsTypeDef,
    PredecessorTypeDef,
    JoinColumnTypeDef,
    KeySchemaElementTypeDef,
    LabelingSetGenerationTaskRunPropertiesTypeDef,
    ListBlueprintsRequestRequestTypeDef,
    ListCrawlersRequestRequestTypeDef,
    ListCustomEntityTypesRequestRequestTypeDef,
    ListDevEndpointsRequestRequestTypeDef,
    ListJobsRequestRequestTypeDef,
    ListRegistriesInputRequestTypeDef,
    RegistryListItemTypeDef,
    SchemaVersionListItemTypeDef,
    SchemaListItemTypeDef,
    ListSessionsRequestRequestTypeDef,
    ListStatementsRequestRequestTypeDef,
    ListTriggersRequestRequestTypeDef,
    ListWorkflowsRequestRequestTypeDef,
    MLUserDataEncryptionTypeDef,
    MappingTypeDef,
    OtherMetadataValueListItemTypeDef,
    MetadataKeyValuePairTypeDef,
    OrderTypeDef,
    PropertyPredicateTypeDef,
    PutResourcePolicyRequestRequestTypeDef,
    PutWorkflowRunPropertiesRequestRequestTypeDef,
    UpsertRedshiftTargetOptionsTypeDef,
    ResetJobBookmarkRequestRequestTypeDef,
    ResourceUriTypeDef,
    ResumeWorkflowRunRequestRequestTypeDef,
    RunStatementRequestRequestTypeDef,
    S3DirectSourceAdditionalOptionsTypeDef,
    SortCriterionTypeDef,
    SerDeInfoTypeDef,
    SkewedInfoTypeDef,
    SqlAliasTypeDef,
    StartBlueprintRunRequestRequestTypeDef,
    StartCrawlerRequestRequestTypeDef,
    StartCrawlerScheduleRequestRequestTypeDef,
    StartExportLabelsTaskRunRequestRequestTypeDef,
    StartImportLabelsTaskRunRequestRequestTypeDef,
    StartMLEvaluationTaskRunRequestRequestTypeDef,
    StartMLLabelingSetGenerationTaskRunRequestRequestTypeDef,
    StartTriggerRequestRequestTypeDef,
    StartWorkflowRunRequestRequestTypeDef,
    StartingEventBatchConditionTypeDef,
    StatementOutputDataTypeDef,
    StopCrawlerRequestRequestTypeDef,
    StopCrawlerScheduleRequestRequestTypeDef,
    StopSessionRequestRequestTypeDef,
    StopTriggerRequestRequestTypeDef,
    StopWorkflowRunRequestRequestTypeDef,
    TableIdentifierTypeDef,
    TagResourceRequestRequestTypeDef,
    UntagResourceRequestRequestTypeDef,
    UpdateBlueprintRequestRequestTypeDef,
    UpdateCsvClassifierRequestTypeDef,
    UpdateGrokClassifierRequestTypeDef,
    UpdateJsonClassifierRequestTypeDef,
    UpdateXMLClassifierRequestTypeDef,
    UpdateCrawlerScheduleRequestRequestTypeDef,
    UpdateJobFromSourceControlRequestRequestTypeDef,
    UpdateSourceControlFromJobRequestRequestTypeDef,
    UpdateWorkflowRequestRequestTypeDef,
    WorkflowRunStatisticsTypeDef,
    ActionTypeDef,
    StartJobRunRequestRequestTypeDef,
    AggregateTypeDef,
    GetUnfilteredPartitionMetadataRequestRequestTypeDef,
    GetUnfilteredTableMetadataRequestRequestTypeDef,
    BackfillErrorTypeDef,
    BatchDeletePartitionRequestRequestTypeDef,
    BatchGetPartitionRequestRequestTypeDef,
    CancelMLTaskRunResponseTypeDef,
    CheckSchemaVersionValidityResponseTypeDef,
    CreateBlueprintResponseTypeDef,
    CreateCustomEntityTypeResponseTypeDef,
    CreateDevEndpointResponseTypeDef,
    CreateJobResponseTypeDef,
    CreateMLTransformResponseTypeDef,
    CreateRegistryResponseTypeDef,
    CreateSchemaResponseTypeDef,
    CreateScriptResponseTypeDef,
    CreateSecurityConfigurationResponseTypeDef,
    CreateTriggerResponseTypeDef,
    CreateWorkflowResponseTypeDef,
    DeleteBlueprintResponseTypeDef,
    DeleteCustomEntityTypeResponseTypeDef,
    DeleteJobResponseTypeDef,
    DeleteMLTransformResponseTypeDef,
    DeleteRegistryResponseTypeDef,
    DeleteSchemaResponseTypeDef,
    DeleteSessionResponseTypeDef,
    DeleteTriggerResponseTypeDef,
    DeleteWorkflowResponseTypeDef,
    GetCustomEntityTypeResponseTypeDef,
    GetPlanResponseTypeDef,
    GetRegistryResponseTypeDef,
    GetResourcePolicyResponseTypeDef,
    GetSchemaByDefinitionResponseTypeDef,
    GetSchemaResponseTypeDef,
    GetSchemaVersionResponseTypeDef,
    GetSchemaVersionsDiffResponseTypeDef,
    GetTagsResponseTypeDef,
    GetWorkflowRunPropertiesResponseTypeDef,
    ListBlueprintsResponseTypeDef,
    ListCrawlersResponseTypeDef,
    ListDevEndpointsResponseTypeDef,
    ListJobsResponseTypeDef,
    ListMLTransformsResponseTypeDef,
    ListTriggersResponseTypeDef,
    ListWorkflowsResponseTypeDef,
    PutResourcePolicyResponseTypeDef,
    PutSchemaVersionMetadataResponseTypeDef,
    RegisterSchemaVersionResponseTypeDef,
    RemoveSchemaVersionMetadataResponseTypeDef,
    ResumeWorkflowRunResponseTypeDef,
    RunStatementResponseTypeDef,
    StartBlueprintRunResponseTypeDef,
    StartExportLabelsTaskRunResponseTypeDef,
    StartImportLabelsTaskRunResponseTypeDef,
    StartJobRunResponseTypeDef,
    StartMLEvaluationTaskRunResponseTypeDef,
    StartMLLabelingSetGenerationTaskRunResponseTypeDef,
    StartTriggerResponseTypeDef,
    StartWorkflowRunResponseTypeDef,
    StopSessionResponseTypeDef,
    StopTriggerResponseTypeDef,
    UpdateBlueprintResponseTypeDef,
    UpdateJobFromSourceControlResponseTypeDef,
    UpdateJobResponseTypeDef,
    UpdateMLTransformResponseTypeDef,
    UpdateRegistryResponseTypeDef,
    UpdateSchemaResponseTypeDef,
    UpdateSourceControlFromJobResponseTypeDef,
    UpdateWorkflowResponseTypeDef,
    BatchDeleteConnectionResponseTypeDef,
    BatchStopJobRunErrorTypeDef,
    BatchUpdatePartitionFailureEntryTypeDef,
    ColumnErrorTypeDef,
    PartitionErrorTypeDef,
    TableErrorTypeDef,
    TableVersionErrorTypeDef,
    BatchGetCustomEntityTypesResponseTypeDef,
    ListCustomEntityTypesResponseTypeDef,
    BatchGetDevEndpointsResponseTypeDef,
    GetDevEndpointResponseTypeDef,
    GetDevEndpointsResponseTypeDef,
    GetBlueprintRunResponseTypeDef,
    GetBlueprintRunsResponseTypeDef,
    BlueprintTypeDef,
    GetCatalogImportStatusResponseTypeDef,
    CatalogKafkaSourceTypeDef,
    DirectKafkaSourceTypeDef,
    CatalogKinesisSourceTypeDef,
    DirectKinesisSourceTypeDef,
    GovernedCatalogTargetTypeDef,
    S3CatalogTargetTypeDef,
    ClassifierTypeDef,
    CodeGenNodeTypeDef,
    LocationTypeDef,
    PredicateTypeDef,
    FindMatchesMetricsTypeDef,
    ConnectionInputTypeDef,
    ConnectionTypeDef,
    CrawlerNodeDetailsTypeDef,
    ListCrawlsResponseTypeDef,
    GetCrawlerMetricsResponseTypeDef,
    CrawlerTargetsTypeDef,
    ListCrawlsRequestRequestTypeDef,
    CreateClassifierRequestRequestTypeDef,
    CreatePartitionIndexRequestRequestTypeDef,
    CreateSchemaInputRequestTypeDef,
    DeleteRegistryInputRequestTypeDef,
    GetRegistryInputRequestTypeDef,
    ListSchemasInputRequestTypeDef,
    UpdateRegistryInputRequestTypeDef,
    CreateSessionRequestRequestTypeDef,
    SessionTypeDef,
    DataCatalogEncryptionSettingsTypeDef,
    PrincipalPermissionsTypeDef,
    NullValueFieldTypeDef,
    DecimalColumnStatisticsDataTypeDef,
    DeleteSchemaInputRequestTypeDef,
    DeleteSchemaVersionsInputRequestTypeDef,
    GetSchemaByDefinitionInputRequestTypeDef,
    GetSchemaInputRequestTypeDef,
    ListSchemaVersionsInputRequestTypeDef,
    RegisterSchemaVersionInputRequestTypeDef,
    SchemaReferenceTypeDef,
    UpdateDevEndpointRequestRequestTypeDef,
    S3DirectTargetTypeDef,
    S3GlueParquetTargetTypeDef,
    EncryptionConfigurationTypeDef,
    SchemaVersionErrorItemTypeDef,
    FilterExpressionTypeDef,
    TransformParametersTypeDef,
    GetClassifiersRequestGetClassifiersPaginateTypeDef,
    GetCrawlerMetricsRequestGetCrawlerMetricsPaginateTypeDef,
    GetCrawlersRequestGetCrawlersPaginateTypeDef,
    GetDatabasesRequestGetDatabasesPaginateTypeDef,
    GetDevEndpointsRequestGetDevEndpointsPaginateTypeDef,
    GetJobRunsRequestGetJobRunsPaginateTypeDef,
    GetJobsRequestGetJobsPaginateTypeDef,
    GetPartitionIndexesRequestGetPartitionIndexesPaginateTypeDef,
    GetResourcePoliciesRequestGetResourcePoliciesPaginateTypeDef,
    GetSecurityConfigurationsRequestGetSecurityConfigurationsPaginateTypeDef,
    GetTableVersionsRequestGetTableVersionsPaginateTypeDef,
    GetTablesRequestGetTablesPaginateTypeDef,
    GetTriggersRequestGetTriggersPaginateTypeDef,
    GetUserDefinedFunctionsRequestGetUserDefinedFunctionsPaginateTypeDef,
    ListRegistriesInputListRegistriesPaginateTypeDef,
    ListSchemaVersionsInputListSchemaVersionsPaginateTypeDef,
    ListSchemasInputListSchemasPaginateTypeDef,
    GetConnectionsRequestGetConnectionsPaginateTypeDef,
    GetConnectionsRequestRequestTypeDef,
    GetJobBookmarkResponseTypeDef,
    ResetJobBookmarkResponseTypeDef,
    GetMLTaskRunsRequestRequestTypeDef,
    TransformFilterCriteriaTypeDef,
    GetMappingResponseTypeDef,
    GetPartitionsRequestGetPartitionsPaginateTypeDef,
    GetPartitionsRequestRequestTypeDef,
    GetUnfilteredPartitionsMetadataRequestRequestTypeDef,
    GetResourcePoliciesResponseTypeDef,
    GetSchemaVersionInputRequestTypeDef,
    GetSchemaVersionsDiffInputRequestTypeDef,
    UpdateSchemaInputRequestTypeDef,
    GlueSchemaTypeDef,
    GovernedCatalogSourceTypeDef,
    S3CatalogSourceTypeDef,
    JobRunTypeDef,
    JoinTypeDef,
    TaskRunPropertiesTypeDef,
    ListRegistriesResponseTypeDef,
    ListSchemaVersionsResponseTypeDef,
    ListSchemasResponseTypeDef,
    TransformEncryptionTypeDef,
    MetadataInfoTypeDef,
    PutSchemaVersionMetadataInputRequestTypeDef,
    QuerySchemaVersionMetadataInputRequestTypeDef,
    RemoveSchemaVersionMetadataInputRequestTypeDef,
    RedshiftTargetTypeDef,
    UserDefinedFunctionInputTypeDef,
    UserDefinedFunctionTypeDef,
    SearchTablesRequestRequestTypeDef,
    StatementOutputTypeDef,
    UpdateClassifierRequestRequestTypeDef,
    PartitionIndexDescriptorTypeDef,
    BatchStopJobRunResponseTypeDef,
    BatchUpdatePartitionResponseTypeDef,
    BatchCreatePartitionResponseTypeDef,
    BatchDeletePartitionResponseTypeDef,
    BatchDeleteTableResponseTypeDef,
    BatchDeleteTableVersionResponseTypeDef,
    BatchGetBlueprintsResponseTypeDef,
    GetBlueprintResponseTypeDef,
    GetClassifierResponseTypeDef,
    GetClassifiersResponseTypeDef,
    CreateScriptRequestRequestTypeDef,
    GetDataflowGraphResponseTypeDef,
    GetMappingRequestRequestTypeDef,
    GetPlanRequestRequestTypeDef,
    CreateTriggerRequestRequestTypeDef,
    TriggerTypeDef,
    TriggerUpdateTypeDef,
    EvaluationMetricsTypeDef,
    CreateConnectionRequestRequestTypeDef,
    UpdateConnectionRequestRequestTypeDef,
    GetConnectionResponseTypeDef,
    GetConnectionsResponseTypeDef,
    CrawlerTypeDef,
    CreateCrawlerRequestRequestTypeDef,
    UpdateCrawlerRequestRequestTypeDef,
    CreateSessionResponseTypeDef,
    GetSessionResponseTypeDef,
    ListSessionsResponseTypeDef,
    GetDataCatalogEncryptionSettingsResponseTypeDef,
    PutDataCatalogEncryptionSettingsRequestRequestTypeDef,
    DatabaseInputTypeDef,
    DatabaseTypeDef,
    DropNullFieldsTypeDef,
    ColumnStatisticsDataTypeDef,
    StorageDescriptorTypeDef,
    CreateSecurityConfigurationRequestRequestTypeDef,
    SecurityConfigurationTypeDef,
    DeleteSchemaVersionsResponseTypeDef,
    FilterTypeDef,
    UpdateMLTransformRequestRequestTypeDef,
    GetMLTransformsRequestRequestTypeDef,
    ListMLTransformsRequestRequestTypeDef,
    AthenaConnectorSourceTypeDef,
    CustomCodeTypeDef,
    JDBCConnectorSourceTypeDef,
    JDBCConnectorTargetTypeDef,
    S3CsvSourceTypeDef,
    S3JsonSourceTypeDef,
    S3ParquetSourceTypeDef,
    SparkConnectorSourceTypeDef,
    SparkConnectorTargetTypeDef,
    SparkSQLTypeDef,
    GetJobRunResponseTypeDef,
    GetJobRunsResponseTypeDef,
    JobNodeDetailsTypeDef,
    GetMLTaskRunResponseTypeDef,
    TaskRunTypeDef,
    CreateMLTransformRequestRequestTypeDef,
    QuerySchemaVersionMetadataResponseTypeDef,
    CreateUserDefinedFunctionRequestRequestTypeDef,
    UpdateUserDefinedFunctionRequestRequestTypeDef,
    GetUserDefinedFunctionResponseTypeDef,
    GetUserDefinedFunctionsResponseTypeDef,
    StatementTypeDef,
    GetPartitionIndexesResponseTypeDef,
    BatchGetTriggersResponseTypeDef,
    GetTriggerResponseTypeDef,
    GetTriggersResponseTypeDef,
    TriggerNodeDetailsTypeDef,
    UpdateTriggerResponseTypeDef,
    UpdateTriggerRequestRequestTypeDef,
    GetMLTransformResponseTypeDef,
    MLTransformTypeDef,
    BatchGetCrawlersResponseTypeDef,
    GetCrawlerResponseTypeDef,
    GetCrawlersResponseTypeDef,
    CreateDatabaseRequestRequestTypeDef,
    UpdateDatabaseRequestRequestTypeDef,
    GetDatabaseResponseTypeDef,
    GetDatabasesResponseTypeDef,
    ColumnStatisticsTypeDef,
    PartitionInputTypeDef,
    PartitionTypeDef,
    TableInputTypeDef,
    TableTypeDef,
    GetSecurityConfigurationResponseTypeDef,
    GetSecurityConfigurationsResponseTypeDef,
    CodeGenConfigurationNodeTypeDef,
    GetMLTaskRunsResponseTypeDef,
    GetStatementResponseTypeDef,
    ListStatementsResponseTypeDef,
    NodeTypeDef,
    GetMLTransformsResponseTypeDef,
    ColumnStatisticsErrorTypeDef,
    GetColumnStatisticsForPartitionResponseTypeDef,
    GetColumnStatisticsForTableResponseTypeDef,
    UpdateColumnStatisticsForPartitionRequestRequestTypeDef,
    UpdateColumnStatisticsForTableRequestRequestTypeDef,
    BatchCreatePartitionRequestRequestTypeDef,
    BatchUpdatePartitionRequestEntryTypeDef,
    CreatePartitionRequestRequestTypeDef,
    UpdatePartitionRequestRequestTypeDef,
    BatchGetPartitionResponseTypeDef,
    GetPartitionResponseTypeDef,
    GetPartitionsResponseTypeDef,
    GetUnfilteredPartitionMetadataResponseTypeDef,
    UnfilteredPartitionTypeDef,
    CreateTableRequestRequestTypeDef,
    UpdateTableRequestRequestTypeDef,
    GetTableResponseTypeDef,
    GetTablesResponseTypeDef,
    GetUnfilteredTableMetadataResponseTypeDef,
    SearchTablesResponseTypeDef,
    TableVersionTypeDef,
    CreateJobRequestRequestTypeDef,
    JobTypeDef,
    JobUpdateTypeDef,
    WorkflowGraphTypeDef,
    UpdateColumnStatisticsForPartitionResponseTypeDef,
    UpdateColumnStatisticsForTableResponseTypeDef,
    BatchUpdatePartitionRequestRequestTypeDef,
    GetUnfilteredPartitionsMetadataResponseTypeDef,
    GetTableVersionResponseTypeDef,
    GetTableVersionsResponseTypeDef,
    BatchGetJobsResponseTypeDef,
    GetJobResponseTypeDef,
    GetJobsResponseTypeDef,
    UpdateJobRequestRequestTypeDef,
    WorkflowRunTypeDef,
    GetWorkflowRunResponseTypeDef,
    GetWorkflowRunsResponseTypeDef,
    WorkflowTypeDef,
    BatchGetWorkflowsResponseTypeDef,
    GetWorkflowResponseTypeDef,
)


def get_structure() -> NotificationPropertyTypeDef:
    return {...}

How it works

Fully automated mypy-boto3-builder carefully generates type annotations for each service, patiently waiting for boto3 updates. It delivers a drop-in type annotations for you and makes sure that:

  • All available boto3 services are covered.
  • Each public class and method of every boto3 service gets valid type annotations extracted from the documentation (blame botocore docs if types are incorrect).
  • Type annotations include up-to-date documentation.
  • Link to documentation is provided for every method.
  • Code is processed by black and isort for readability.

What's new

Implemented features

  • Fully type annotated boto3, botocore and aiobotocore libraries
  • mypy, pyright, VSCode, PyCharm, Sublime Text and Emacs compatibility
  • Client, ServiceResource, Resource, Waiter Paginator type annotations for each service
  • Generated TypeDefs for each service
  • Generated Literals for each service
  • Auto discovery of types for boto3.client and boto3.session calls
  • Auto discovery of types for session.client and session.session calls
  • Auto discovery of types for client.get_waiter and client.get_paginator calls
  • Auto discovery of types for ServiceResource and Resource collections
  • Auto discovery of types for aiobotocore.Session.create_client calls

Latest changes

Builder changelog can be found in Releases.

Versioning

mypy-boto3-glue version is the same as related boto3 version and follows PEP 440 format.

Thank you

Documentation

All services type annotations can be found in boto3 docs

Support and contributing

This package is auto-generated. Please reports any bugs or request new features in mypy-boto3-builder repository.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mypy-boto3-glue-1.26.8.tar.gz (106.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mypy_boto3_glue-1.26.8-py3-none-any.whl (102.5 kB view details)

Uploaded Python 3

File details

Details for the file mypy-boto3-glue-1.26.8.tar.gz.

File metadata

  • Download URL: mypy-boto3-glue-1.26.8.tar.gz
  • Upload date:
  • Size: 106.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for mypy-boto3-glue-1.26.8.tar.gz
Algorithm Hash digest
SHA256 38de70c966b6152ac8954a411c939c199a91f2893b161810f63a2a93d8eebf55
MD5 af786e5075234f81bbdd0ecf71b10848
BLAKE2b-256 974a54c0c20d613023210f11ad6e4f145beb1a141b57905d7857131ba52b2431

See more details on using hashes here.

File details

Details for the file mypy_boto3_glue-1.26.8-py3-none-any.whl.

File metadata

File hashes

Hashes for mypy_boto3_glue-1.26.8-py3-none-any.whl
Algorithm Hash digest
SHA256 3e37b2f44f85adf10f08eaac1322910ebbbbf28e7400371eeee62dd7b627fbef
MD5 b9d9df37654ef1ae5109f8cf1947dc0d
BLAKE2b-256 994426ce7ef31899d3c33544461e2dd26d8ba907b039dec478c62e6301ac6cd7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page