Skip to content

Literals#

Index > Glue > Literals

Auto-generated documentation for Glue type annotations stubs module mypy-boto3-glue.

AdditionalOptionKeysType#

# AdditionalOptionKeysType usage example

from mypy_boto3_glue.literals import AdditionalOptionKeysType

def get_value() -> AdditionalOptionKeysType:
    return "observations.scope"
# AdditionalOptionKeysType definition

AdditionalOptionKeysType = Literal[
    "observations.scope",
    "performanceTuning.caching",
]

AggFunctionType#

# AggFunctionType usage example

from mypy_boto3_glue.literals import AggFunctionType

def get_value() -> AggFunctionType:
    return "avg"
# AggFunctionType definition

AggFunctionType = Literal[
    "avg",
    "count",
    "countDistinct",
    "first",
    "kurtosis",
    "last",
    "max",
    "min",
    "skewness",
    "stddev_pop",
    "stddev_samp",
    "sum",
    "sumDistinct",
    "var_pop",
    "var_samp",
]

BackfillErrorCodeType#

# BackfillErrorCodeType usage example

from mypy_boto3_glue.literals import BackfillErrorCodeType

def get_value() -> BackfillErrorCodeType:
    return "ENCRYPTED_PARTITION_ERROR"
# BackfillErrorCodeType definition

BackfillErrorCodeType = Literal[
    "ENCRYPTED_PARTITION_ERROR",
    "INTERNAL_ERROR",
    "INVALID_PARTITION_TYPE_DATA_ERROR",
    "MISSING_PARTITION_VALUE_ERROR",
    "UNSUPPORTED_PARTITION_CHARACTER_ERROR",
]

BlueprintRunStateType#

# BlueprintRunStateType usage example

from mypy_boto3_glue.literals import BlueprintRunStateType

def get_value() -> BlueprintRunStateType:
    return "FAILED"
# BlueprintRunStateType definition

BlueprintRunStateType = Literal[
    "FAILED",
    "ROLLING_BACK",
    "RUNNING",
    "SUCCEEDED",
]

BlueprintStatusType#

# BlueprintStatusType usage example

from mypy_boto3_glue.literals import BlueprintStatusType

def get_value() -> BlueprintStatusType:
    return "ACTIVE"
# BlueprintStatusType definition

BlueprintStatusType = Literal[
    "ACTIVE",
    "CREATING",
    "FAILED",
    "UPDATING",
]

CatalogEncryptionModeType#

# CatalogEncryptionModeType usage example

from mypy_boto3_glue.literals import CatalogEncryptionModeType

def get_value() -> CatalogEncryptionModeType:
    return "DISABLED"
# CatalogEncryptionModeType definition

CatalogEncryptionModeType = Literal[
    "DISABLED",
    "SSE-KMS",
]

CloudWatchEncryptionModeType#

# CloudWatchEncryptionModeType usage example

from mypy_boto3_glue.literals import CloudWatchEncryptionModeType

def get_value() -> CloudWatchEncryptionModeType:
    return "DISABLED"
# CloudWatchEncryptionModeType definition

CloudWatchEncryptionModeType = Literal[
    "DISABLED",
    "SSE-KMS",
]

ColumnStatisticsStateType#

# ColumnStatisticsStateType usage example

from mypy_boto3_glue.literals import ColumnStatisticsStateType

def get_value() -> ColumnStatisticsStateType:
    return "FAILED"
# ColumnStatisticsStateType definition

ColumnStatisticsStateType = Literal[
    "FAILED",
    "RUNNING",
    "STARTING",
    "STOPPED",
    "SUCCEEDED",
]

ColumnStatisticsTypeType#

# ColumnStatisticsTypeType usage example

from mypy_boto3_glue.literals import ColumnStatisticsTypeType

def get_value() -> ColumnStatisticsTypeType:
    return "BINARY"
# ColumnStatisticsTypeType definition

ColumnStatisticsTypeType = Literal[
    "BINARY",
    "BOOLEAN",
    "DATE",
    "DECIMAL",
    "DOUBLE",
    "LONG",
    "STRING",
]

ComparatorType#

# ComparatorType usage example

from mypy_boto3_glue.literals import ComparatorType

def get_value() -> ComparatorType:
    return "EQUALS"
# ComparatorType definition

ComparatorType = Literal[
    "EQUALS",
    "GREATER_THAN",
    "GREATER_THAN_EQUALS",
    "LESS_THAN",
    "LESS_THAN_EQUALS",
]

CompatibilityType#

# CompatibilityType usage example

from mypy_boto3_glue.literals import CompatibilityType

def get_value() -> CompatibilityType:
    return "BACKWARD"
# CompatibilityType definition

CompatibilityType = Literal[
    "BACKWARD",
    "BACKWARD_ALL",
    "DISABLED",
    "FORWARD",
    "FORWARD_ALL",
    "FULL",
    "FULL_ALL",
    "NONE",
]

CompressionTypeType#

# CompressionTypeType usage example

from mypy_boto3_glue.literals import CompressionTypeType

def get_value() -> CompressionTypeType:
    return "bzip2"
# CompressionTypeType definition

CompressionTypeType = Literal[
    "bzip2",
    "gzip",
]

ConnectionPropertyKeyType#

# ConnectionPropertyKeyType usage example

from mypy_boto3_glue.literals import ConnectionPropertyKeyType

def get_value() -> ConnectionPropertyKeyType:
    return "CONFIG_FILES"
# ConnectionPropertyKeyType definition

ConnectionPropertyKeyType = Literal[
    "CONFIG_FILES",
    "CONNECTION_URL",
    "CONNECTOR_CLASS_NAME",
    "CONNECTOR_TYPE",
    "CONNECTOR_URL",
    "CUSTOM_JDBC_CERT",
    "CUSTOM_JDBC_CERT_STRING",
    "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD",
    "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD",
    "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD",
    "ENCRYPTED_PASSWORD",
    "HOST",
    "INSTANCE_ID",
    "JDBC_CONNECTION_URL",
    "JDBC_DRIVER_CLASS_NAME",
    "JDBC_DRIVER_JAR_URI",
    "JDBC_ENFORCE_SSL",
    "JDBC_ENGINE",
    "JDBC_ENGINE_VERSION",
    "KAFKA_BOOTSTRAP_SERVERS",
    "KAFKA_CLIENT_KEY_PASSWORD",
    "KAFKA_CLIENT_KEYSTORE",
    "KAFKA_CLIENT_KEYSTORE_PASSWORD",
    "KAFKA_CUSTOM_CERT",
    "KAFKA_SASL_GSSAPI_KEYTAB",
    "KAFKA_SASL_GSSAPI_KRB5_CONF",
    "KAFKA_SASL_GSSAPI_PRINCIPAL",
    "KAFKA_SASL_GSSAPI_SERVICE",
    "KAFKA_SASL_MECHANISM",
    "KAFKA_SASL_SCRAM_PASSWORD",
    "KAFKA_SASL_SCRAM_SECRETS_ARN",
    "KAFKA_SASL_SCRAM_USERNAME",
    "KAFKA_SKIP_CUSTOM_CERT_VALIDATION",
    "KAFKA_SSL_ENABLED",
    "PASSWORD",
    "PORT",
    "SECRET_ID",
    "SKIP_CUSTOM_JDBC_CERT_VALIDATION",
    "USERNAME",
]

ConnectionTypeType#

# ConnectionTypeType usage example

from mypy_boto3_glue.literals import ConnectionTypeType

def get_value() -> ConnectionTypeType:
    return "CUSTOM"
# ConnectionTypeType definition

ConnectionTypeType = Literal[
    "CUSTOM",
    "JDBC",
    "KAFKA",
    "MARKETPLACE",
    "MONGODB",
    "NETWORK",
    "SFTP",
]

CrawlStateType#

# CrawlStateType usage example

from mypy_boto3_glue.literals import CrawlStateType

def get_value() -> CrawlStateType:
    return "CANCELLED"
# CrawlStateType definition

CrawlStateType = Literal[
    "CANCELLED",
    "CANCELLING",
    "ERROR",
    "FAILED",
    "RUNNING",
    "SUCCEEDED",
]

CrawlerHistoryStateType#

# CrawlerHistoryStateType usage example

from mypy_boto3_glue.literals import CrawlerHistoryStateType

def get_value() -> CrawlerHistoryStateType:
    return "COMPLETED"
# CrawlerHistoryStateType definition

CrawlerHistoryStateType = Literal[
    "COMPLETED",
    "FAILED",
    "RUNNING",
    "STOPPED",
]

CrawlerLineageSettingsType#

# CrawlerLineageSettingsType usage example

from mypy_boto3_glue.literals import CrawlerLineageSettingsType

def get_value() -> CrawlerLineageSettingsType:
    return "DISABLE"
# CrawlerLineageSettingsType definition

CrawlerLineageSettingsType = Literal[
    "DISABLE",
    "ENABLE",
]

CrawlerStateType#

# CrawlerStateType usage example

from mypy_boto3_glue.literals import CrawlerStateType

def get_value() -> CrawlerStateType:
    return "READY"
# CrawlerStateType definition

CrawlerStateType = Literal[
    "READY",
    "RUNNING",
    "STOPPING",
]

CsvHeaderOptionType#

# CsvHeaderOptionType usage example

from mypy_boto3_glue.literals import CsvHeaderOptionType

def get_value() -> CsvHeaderOptionType:
    return "ABSENT"
# CsvHeaderOptionType definition

CsvHeaderOptionType = Literal[
    "ABSENT",
    "PRESENT",
    "UNKNOWN",
]

CsvSerdeOptionType#

# CsvSerdeOptionType usage example

from mypy_boto3_glue.literals import CsvSerdeOptionType

def get_value() -> CsvSerdeOptionType:
    return "LazySimpleSerDe"
# CsvSerdeOptionType definition

CsvSerdeOptionType = Literal[
    "LazySimpleSerDe",
    "None",
    "OpenCSVSerDe",
]

DQStopJobOnFailureTimingType#

# DQStopJobOnFailureTimingType usage example

from mypy_boto3_glue.literals import DQStopJobOnFailureTimingType

def get_value() -> DQStopJobOnFailureTimingType:
    return "AfterDataLoad"
# DQStopJobOnFailureTimingType definition

DQStopJobOnFailureTimingType = Literal[
    "AfterDataLoad",
    "Immediate",
]

DQTransformOutputType#

# DQTransformOutputType usage example

from mypy_boto3_glue.literals import DQTransformOutputType

def get_value() -> DQTransformOutputType:
    return "EvaluationResults"
# DQTransformOutputType definition

DQTransformOutputType = Literal[
    "EvaluationResults",
    "PrimaryInput",
]

DataFormatType#

# DataFormatType usage example

from mypy_boto3_glue.literals import DataFormatType

def get_value() -> DataFormatType:
    return "AVRO"
# DataFormatType definition

DataFormatType = Literal[
    "AVRO",
    "JSON",
    "PROTOBUF",
]

DataQualityRuleResultStatusType#

# DataQualityRuleResultStatusType usage example

from mypy_boto3_glue.literals import DataQualityRuleResultStatusType

def get_value() -> DataQualityRuleResultStatusType:
    return "ERROR"
# DataQualityRuleResultStatusType definition

DataQualityRuleResultStatusType = Literal[
    "ERROR",
    "FAIL",
    "PASS",
]

DeleteBehaviorType#

# DeleteBehaviorType usage example

from mypy_boto3_glue.literals import DeleteBehaviorType

def get_value() -> DeleteBehaviorType:
    return "DELETE_FROM_DATABASE"
# DeleteBehaviorType definition

DeleteBehaviorType = Literal[
    "DELETE_FROM_DATABASE",
    "DEPRECATE_IN_DATABASE",
    "LOG",
]

DeltaTargetCompressionTypeType#

# DeltaTargetCompressionTypeType usage example

from mypy_boto3_glue.literals import DeltaTargetCompressionTypeType

def get_value() -> DeltaTargetCompressionTypeType:
    return "snappy"
# DeltaTargetCompressionTypeType definition

DeltaTargetCompressionTypeType = Literal[
    "snappy",
    "uncompressed",
]

EnableHybridValuesType#

# EnableHybridValuesType usage example

from mypy_boto3_glue.literals import EnableHybridValuesType

def get_value() -> EnableHybridValuesType:
    return "FALSE"
# EnableHybridValuesType definition

EnableHybridValuesType = Literal[
    "FALSE",
    "TRUE",
]

ExecutionClassType#

# ExecutionClassType usage example

from mypy_boto3_glue.literals import ExecutionClassType

def get_value() -> ExecutionClassType:
    return "FLEX"
# ExecutionClassType definition

ExecutionClassType = Literal[
    "FLEX",
    "STANDARD",
]

ExistConditionType#

# ExistConditionType usage example

from mypy_boto3_glue.literals import ExistConditionType

def get_value() -> ExistConditionType:
    return "MUST_EXIST"
# ExistConditionType definition

ExistConditionType = Literal[
    "MUST_EXIST",
    "NONE",
    "NOT_EXIST",
]

FieldNameType#

# FieldNameType usage example

from mypy_boto3_glue.literals import FieldNameType

def get_value() -> FieldNameType:
    return "CRAWL_ID"
# FieldNameType definition

FieldNameType = Literal[
    "CRAWL_ID",
    "DPU_HOUR",
    "END_TIME",
    "START_TIME",
    "STATE",
]

FilterLogicalOperatorType#

# FilterLogicalOperatorType usage example

from mypy_boto3_glue.literals import FilterLogicalOperatorType

def get_value() -> FilterLogicalOperatorType:
    return "AND"
# FilterLogicalOperatorType definition

FilterLogicalOperatorType = Literal[
    "AND",
    "OR",
]

FilterOperationType#

# FilterOperationType usage example

from mypy_boto3_glue.literals import FilterOperationType

def get_value() -> FilterOperationType:
    return "EQ"
# FilterOperationType definition

FilterOperationType = Literal[
    "EQ",
    "GT",
    "GTE",
    "ISNULL",
    "LT",
    "LTE",
    "REGEX",
]

FilterOperatorType#

# FilterOperatorType usage example

from mypy_boto3_glue.literals import FilterOperatorType

def get_value() -> FilterOperatorType:
    return "EQ"
# FilterOperatorType definition

FilterOperatorType = Literal[
    "EQ",
    "GE",
    "GT",
    "LE",
    "LT",
    "NE",
]

FilterValueTypeType#

# FilterValueTypeType usage example

from mypy_boto3_glue.literals import FilterValueTypeType

def get_value() -> FilterValueTypeType:
    return "COLUMNEXTRACTED"
# FilterValueTypeType definition

FilterValueTypeType = Literal[
    "COLUMNEXTRACTED",
    "CONSTANT",
]

GetClassifiersPaginatorName#

# GetClassifiersPaginatorName usage example

from mypy_boto3_glue.literals import GetClassifiersPaginatorName

def get_value() -> GetClassifiersPaginatorName:
    return "get_classifiers"
# GetClassifiersPaginatorName definition

GetClassifiersPaginatorName = Literal[
    "get_classifiers",
]

GetConnectionsPaginatorName#

# GetConnectionsPaginatorName usage example

from mypy_boto3_glue.literals import GetConnectionsPaginatorName

def get_value() -> GetConnectionsPaginatorName:
    return "get_connections"
# GetConnectionsPaginatorName definition

GetConnectionsPaginatorName = Literal[
    "get_connections",
]

GetCrawlerMetricsPaginatorName#

# GetCrawlerMetricsPaginatorName usage example

from mypy_boto3_glue.literals import GetCrawlerMetricsPaginatorName

def get_value() -> GetCrawlerMetricsPaginatorName:
    return "get_crawler_metrics"
# GetCrawlerMetricsPaginatorName definition

GetCrawlerMetricsPaginatorName = Literal[
    "get_crawler_metrics",
]

GetCrawlersPaginatorName#

# GetCrawlersPaginatorName usage example

from mypy_boto3_glue.literals import GetCrawlersPaginatorName

def get_value() -> GetCrawlersPaginatorName:
    return "get_crawlers"
# GetCrawlersPaginatorName definition

GetCrawlersPaginatorName = Literal[
    "get_crawlers",
]

GetDatabasesPaginatorName#

# GetDatabasesPaginatorName usage example

from mypy_boto3_glue.literals import GetDatabasesPaginatorName

def get_value() -> GetDatabasesPaginatorName:
    return "get_databases"
# GetDatabasesPaginatorName definition

GetDatabasesPaginatorName = Literal[
    "get_databases",
]

GetDevEndpointsPaginatorName#

# GetDevEndpointsPaginatorName usage example

from mypy_boto3_glue.literals import GetDevEndpointsPaginatorName

def get_value() -> GetDevEndpointsPaginatorName:
    return "get_dev_endpoints"
# GetDevEndpointsPaginatorName definition

GetDevEndpointsPaginatorName = Literal[
    "get_dev_endpoints",
]

GetJobRunsPaginatorName#

# GetJobRunsPaginatorName usage example

from mypy_boto3_glue.literals import GetJobRunsPaginatorName

def get_value() -> GetJobRunsPaginatorName:
    return "get_job_runs"
# GetJobRunsPaginatorName definition

GetJobRunsPaginatorName = Literal[
    "get_job_runs",
]

GetJobsPaginatorName#

# GetJobsPaginatorName usage example

from mypy_boto3_glue.literals import GetJobsPaginatorName

def get_value() -> GetJobsPaginatorName:
    return "get_jobs"
# GetJobsPaginatorName definition

GetJobsPaginatorName = Literal[
    "get_jobs",
]

GetPartitionIndexesPaginatorName#

# GetPartitionIndexesPaginatorName usage example

from mypy_boto3_glue.literals import GetPartitionIndexesPaginatorName

def get_value() -> GetPartitionIndexesPaginatorName:
    return "get_partition_indexes"
# GetPartitionIndexesPaginatorName definition

GetPartitionIndexesPaginatorName = Literal[
    "get_partition_indexes",
]

GetPartitionsPaginatorName#

# GetPartitionsPaginatorName usage example

from mypy_boto3_glue.literals import GetPartitionsPaginatorName

def get_value() -> GetPartitionsPaginatorName:
    return "get_partitions"
# GetPartitionsPaginatorName definition

GetPartitionsPaginatorName = Literal[
    "get_partitions",
]

GetResourcePoliciesPaginatorName#

# GetResourcePoliciesPaginatorName usage example

from mypy_boto3_glue.literals import GetResourcePoliciesPaginatorName

def get_value() -> GetResourcePoliciesPaginatorName:
    return "get_resource_policies"
# GetResourcePoliciesPaginatorName definition

GetResourcePoliciesPaginatorName = Literal[
    "get_resource_policies",
]

GetSecurityConfigurationsPaginatorName#

# GetSecurityConfigurationsPaginatorName usage example

from mypy_boto3_glue.literals import GetSecurityConfigurationsPaginatorName

def get_value() -> GetSecurityConfigurationsPaginatorName:
    return "get_security_configurations"
# GetSecurityConfigurationsPaginatorName definition

GetSecurityConfigurationsPaginatorName = Literal[
    "get_security_configurations",
]

GetTableVersionsPaginatorName#

# GetTableVersionsPaginatorName usage example

from mypy_boto3_glue.literals import GetTableVersionsPaginatorName

def get_value() -> GetTableVersionsPaginatorName:
    return "get_table_versions"
# GetTableVersionsPaginatorName definition

GetTableVersionsPaginatorName = Literal[
    "get_table_versions",
]

GetTablesPaginatorName#

# GetTablesPaginatorName usage example

from mypy_boto3_glue.literals import GetTablesPaginatorName

def get_value() -> GetTablesPaginatorName:
    return "get_tables"
# GetTablesPaginatorName definition

GetTablesPaginatorName = Literal[
    "get_tables",
]

GetTriggersPaginatorName#

# GetTriggersPaginatorName usage example

from mypy_boto3_glue.literals import GetTriggersPaginatorName

def get_value() -> GetTriggersPaginatorName:
    return "get_triggers"
# GetTriggersPaginatorName definition

GetTriggersPaginatorName = Literal[
    "get_triggers",
]

GetUserDefinedFunctionsPaginatorName#

# GetUserDefinedFunctionsPaginatorName usage example

from mypy_boto3_glue.literals import GetUserDefinedFunctionsPaginatorName

def get_value() -> GetUserDefinedFunctionsPaginatorName:
    return "get_user_defined_functions"
# GetUserDefinedFunctionsPaginatorName definition

GetUserDefinedFunctionsPaginatorName = Literal[
    "get_user_defined_functions",
]

GlueRecordTypeType#

# GlueRecordTypeType usage example

from mypy_boto3_glue.literals import GlueRecordTypeType

def get_value() -> GlueRecordTypeType:
    return "BIGDECIMAL"
# GlueRecordTypeType definition

GlueRecordTypeType = Literal[
    "BIGDECIMAL",
    "BYTE",
    "DATE",
    "DOUBLE",
    "FLOAT",
    "INT",
    "LONG",
    "SHORT",
    "STRING",
    "TIMESTAMP",
]

HudiTargetCompressionTypeType#

# HudiTargetCompressionTypeType usage example

from mypy_boto3_glue.literals import HudiTargetCompressionTypeType

def get_value() -> HudiTargetCompressionTypeType:
    return "gzip"
# HudiTargetCompressionTypeType definition

HudiTargetCompressionTypeType = Literal[
    "gzip",
    "lzo",
    "snappy",
    "uncompressed",
]

JDBCConnectionTypeType#

# JDBCConnectionTypeType usage example

from mypy_boto3_glue.literals import JDBCConnectionTypeType

def get_value() -> JDBCConnectionTypeType:
    return "mysql"
# JDBCConnectionTypeType definition

JDBCConnectionTypeType = Literal[
    "mysql",
    "oracle",
    "postgresql",
    "redshift",
    "sqlserver",
]

JDBCDataTypeType#

# JDBCDataTypeType usage example

from mypy_boto3_glue.literals import JDBCDataTypeType

def get_value() -> JDBCDataTypeType:
    return "ARRAY"
# JDBCDataTypeType definition

JDBCDataTypeType = Literal[
    "ARRAY",
    "BIGINT",
    "BINARY",
    "BIT",
    "BLOB",
    "BOOLEAN",
    "CHAR",
    "CLOB",
    "DATALINK",
    "DATE",
    "DECIMAL",
    "DISTINCT",
    "DOUBLE",
    "FLOAT",
    "INTEGER",
    "JAVA_OBJECT",
    "LONGNVARCHAR",
    "LONGVARBINARY",
    "LONGVARCHAR",
    "NCHAR",
    "NCLOB",
    "NULL",
    "NUMERIC",
    "NVARCHAR",
    "OTHER",
    "REAL",
    "REF",
    "REF_CURSOR",
    "ROWID",
    "SMALLINT",
    "SQLXML",
    "STRUCT",
    "TIME",
    "TIME_WITH_TIMEZONE",
    "TIMESTAMP",
    "TIMESTAMP_WITH_TIMEZONE",
    "TINYINT",
    "VARBINARY",
    "VARCHAR",
]

JdbcMetadataEntryType#

# JdbcMetadataEntryType usage example

from mypy_boto3_glue.literals import JdbcMetadataEntryType

def get_value() -> JdbcMetadataEntryType:
    return "COMMENTS"
# JdbcMetadataEntryType definition

JdbcMetadataEntryType = Literal[
    "COMMENTS",
    "RAWTYPES",
]

JobBookmarksEncryptionModeType#

# JobBookmarksEncryptionModeType usage example

from mypy_boto3_glue.literals import JobBookmarksEncryptionModeType

def get_value() -> JobBookmarksEncryptionModeType:
    return "CSE-KMS"
# JobBookmarksEncryptionModeType definition

JobBookmarksEncryptionModeType = Literal[
    "CSE-KMS",
    "DISABLED",
]

JobRunStateType#

# JobRunStateType usage example

from mypy_boto3_glue.literals import JobRunStateType

def get_value() -> JobRunStateType:
    return "ERROR"
# JobRunStateType definition

JobRunStateType = Literal[
    "ERROR",
    "FAILED",
    "RUNNING",
    "STARTING",
    "STOPPED",
    "STOPPING",
    "SUCCEEDED",
    "TIMEOUT",
    "WAITING",
]

JoinTypeType#

# JoinTypeType usage example

from mypy_boto3_glue.literals import JoinTypeType

def get_value() -> JoinTypeType:
    return "equijoin"
# JoinTypeType definition

JoinTypeType = Literal[
    "equijoin",
    "left",
    "leftanti",
    "leftsemi",
    "outer",
    "right",
]

LanguageType#

# LanguageType usage example

from mypy_boto3_glue.literals import LanguageType

def get_value() -> LanguageType:
    return "PYTHON"
# LanguageType definition

LanguageType = Literal[
    "PYTHON",
    "SCALA",
]

LastCrawlStatusType#

# LastCrawlStatusType usage example

from mypy_boto3_glue.literals import LastCrawlStatusType

def get_value() -> LastCrawlStatusType:
    return "CANCELLED"
# LastCrawlStatusType definition

LastCrawlStatusType = Literal[
    "CANCELLED",
    "FAILED",
    "SUCCEEDED",
]

ListRegistriesPaginatorName#

# ListRegistriesPaginatorName usage example

from mypy_boto3_glue.literals import ListRegistriesPaginatorName

def get_value() -> ListRegistriesPaginatorName:
    return "list_registries"
# ListRegistriesPaginatorName definition

ListRegistriesPaginatorName = Literal[
    "list_registries",
]

ListSchemaVersionsPaginatorName#

# ListSchemaVersionsPaginatorName usage example

from mypy_boto3_glue.literals import ListSchemaVersionsPaginatorName

def get_value() -> ListSchemaVersionsPaginatorName:
    return "list_schema_versions"
# ListSchemaVersionsPaginatorName definition

ListSchemaVersionsPaginatorName = Literal[
    "list_schema_versions",
]

ListSchemasPaginatorName#

# ListSchemasPaginatorName usage example

from mypy_boto3_glue.literals import ListSchemasPaginatorName

def get_value() -> ListSchemasPaginatorName:
    return "list_schemas"
# ListSchemasPaginatorName definition

ListSchemasPaginatorName = Literal[
    "list_schemas",
]

LogicalOperatorType#

# LogicalOperatorType usage example

from mypy_boto3_glue.literals import LogicalOperatorType

def get_value() -> LogicalOperatorType:
    return "EQUALS"
# LogicalOperatorType definition

LogicalOperatorType = Literal[
    "EQUALS",
]

LogicalType#

# LogicalType usage example

from mypy_boto3_glue.literals import LogicalType

def get_value() -> LogicalType:
    return "AND"
# LogicalType definition

LogicalType = Literal[
    "AND",
    "ANY",
]

MLUserDataEncryptionModeStringType#

# MLUserDataEncryptionModeStringType usage example

from mypy_boto3_glue.literals import MLUserDataEncryptionModeStringType

def get_value() -> MLUserDataEncryptionModeStringType:
    return "DISABLED"
# MLUserDataEncryptionModeStringType definition

MLUserDataEncryptionModeStringType = Literal[
    "DISABLED",
    "SSE-KMS",
]

MetadataOperationType#

# MetadataOperationType usage example

from mypy_boto3_glue.literals import MetadataOperationType

def get_value() -> MetadataOperationType:
    return "CREATE"
# MetadataOperationType definition

MetadataOperationType = Literal[
    "CREATE",
]

NodeTypeType#

# NodeTypeType usage example

from mypy_boto3_glue.literals import NodeTypeType

def get_value() -> NodeTypeType:
    return "CRAWLER"
# NodeTypeType definition

NodeTypeType = Literal[
    "CRAWLER",
    "JOB",
    "TRIGGER",
]

ParamTypeType#

# ParamTypeType usage example

from mypy_boto3_glue.literals import ParamTypeType

def get_value() -> ParamTypeType:
    return "bool"
# ParamTypeType definition

ParamTypeType = Literal[
    "bool",
    "complex",
    "float",
    "int",
    "list",
    "null",
    "str",
]

ParquetCompressionTypeType#

# ParquetCompressionTypeType usage example

from mypy_boto3_glue.literals import ParquetCompressionTypeType

def get_value() -> ParquetCompressionTypeType:
    return "gzip"
# ParquetCompressionTypeType definition

ParquetCompressionTypeType = Literal[
    "gzip",
    "lzo",
    "none",
    "snappy",
    "uncompressed",
]

PartitionIndexStatusType#

# PartitionIndexStatusType usage example

from mypy_boto3_glue.literals import PartitionIndexStatusType

def get_value() -> PartitionIndexStatusType:
    return "ACTIVE"
# PartitionIndexStatusType definition

PartitionIndexStatusType = Literal[
    "ACTIVE",
    "CREATING",
    "DELETING",
    "FAILED",
]

PermissionType#

# PermissionType usage example

from mypy_boto3_glue.literals import PermissionType

def get_value() -> PermissionType:
    return "ALL"
# PermissionType definition

PermissionType = Literal[
    "ALL",
    "ALTER",
    "CREATE_DATABASE",
    "CREATE_TABLE",
    "DATA_LOCATION_ACCESS",
    "DELETE",
    "DROP",
    "INSERT",
    "SELECT",
]

PermissionTypeType#

# PermissionTypeType usage example

from mypy_boto3_glue.literals import PermissionTypeType

def get_value() -> PermissionTypeType:
    return "CELL_FILTER_PERMISSION"
# PermissionTypeType definition

PermissionTypeType = Literal[
    "CELL_FILTER_PERMISSION",
    "COLUMN_PERMISSION",
    "NESTED_CELL_PERMISSION",
    "NESTED_PERMISSION",
]

PiiTypeType#

# PiiTypeType usage example

from mypy_boto3_glue.literals import PiiTypeType

def get_value() -> PiiTypeType:
    return "ColumnAudit"
# PiiTypeType definition

PiiTypeType = Literal[
    "ColumnAudit",
    "ColumnMasking",
    "RowAudit",
    "RowMasking",
]

PrincipalTypeType#

# PrincipalTypeType usage example

from mypy_boto3_glue.literals import PrincipalTypeType

def get_value() -> PrincipalTypeType:
    return "GROUP"
# PrincipalTypeType definition

PrincipalTypeType = Literal[
    "GROUP",
    "ROLE",
    "USER",
]

QuoteCharType#

# QuoteCharType usage example

from mypy_boto3_glue.literals import QuoteCharType

def get_value() -> QuoteCharType:
    return "disabled"
# QuoteCharType definition

QuoteCharType = Literal[
    "disabled",
    "quillemet",
    "quote",
    "single_quote",
]

RecrawlBehaviorType#

# RecrawlBehaviorType usage example

from mypy_boto3_glue.literals import RecrawlBehaviorType

def get_value() -> RecrawlBehaviorType:
    return "CRAWL_EVENT_MODE"
# RecrawlBehaviorType definition

RecrawlBehaviorType = Literal[
    "CRAWL_EVENT_MODE",
    "CRAWL_EVERYTHING",
    "CRAWL_NEW_FOLDERS_ONLY",
]

RegistryStatusType#

# RegistryStatusType usage example

from mypy_boto3_glue.literals import RegistryStatusType

def get_value() -> RegistryStatusType:
    return "AVAILABLE"
# RegistryStatusType definition

RegistryStatusType = Literal[
    "AVAILABLE",
    "DELETING",
]

ResourceShareTypeType#

# ResourceShareTypeType usage example

from mypy_boto3_glue.literals import ResourceShareTypeType

def get_value() -> ResourceShareTypeType:
    return "ALL"
# ResourceShareTypeType definition

ResourceShareTypeType = Literal[
    "ALL",
    "FEDERATED",
    "FOREIGN",
]

ResourceTypeType#

# ResourceTypeType usage example

from mypy_boto3_glue.literals import ResourceTypeType

def get_value() -> ResourceTypeType:
    return "ARCHIVE"
# ResourceTypeType definition

ResourceTypeType = Literal[
    "ARCHIVE",
    "FILE",
    "JAR",
]

S3EncryptionModeType#

# S3EncryptionModeType usage example

from mypy_boto3_glue.literals import S3EncryptionModeType

def get_value() -> S3EncryptionModeType:
    return "DISABLED"
# S3EncryptionModeType definition

S3EncryptionModeType = Literal[
    "DISABLED",
    "SSE-KMS",
    "SSE-S3",
]

ScheduleStateType#

# ScheduleStateType usage example

from mypy_boto3_glue.literals import ScheduleStateType

def get_value() -> ScheduleStateType:
    return "NOT_SCHEDULED"
# ScheduleStateType definition

ScheduleStateType = Literal[
    "NOT_SCHEDULED",
    "SCHEDULED",
    "TRANSITIONING",
]

SchemaDiffTypeType#

# SchemaDiffTypeType usage example

from mypy_boto3_glue.literals import SchemaDiffTypeType

def get_value() -> SchemaDiffTypeType:
    return "SYNTAX_DIFF"
# SchemaDiffTypeType definition

SchemaDiffTypeType = Literal[
    "SYNTAX_DIFF",
]

SchemaStatusType#

# SchemaStatusType usage example

from mypy_boto3_glue.literals import SchemaStatusType

def get_value() -> SchemaStatusType:
    return "AVAILABLE"
# SchemaStatusType definition

SchemaStatusType = Literal[
    "AVAILABLE",
    "DELETING",
    "PENDING",
]

SchemaVersionStatusType#

# SchemaVersionStatusType usage example

from mypy_boto3_glue.literals import SchemaVersionStatusType

def get_value() -> SchemaVersionStatusType:
    return "AVAILABLE"
# SchemaVersionStatusType definition

SchemaVersionStatusType = Literal[
    "AVAILABLE",
    "DELETING",
    "FAILURE",
    "PENDING",
]

SeparatorType#

# SeparatorType usage example

from mypy_boto3_glue.literals import SeparatorType

def get_value() -> SeparatorType:
    return "comma"
# SeparatorType definition

SeparatorType = Literal[
    "comma",
    "ctrla",
    "pipe",
    "semicolon",
    "tab",
]

SessionStatusType#

# SessionStatusType usage example

from mypy_boto3_glue.literals import SessionStatusType

def get_value() -> SessionStatusType:
    return "FAILED"
# SessionStatusType definition

SessionStatusType = Literal[
    "FAILED",
    "PROVISIONING",
    "READY",
    "STOPPED",
    "STOPPING",
    "TIMEOUT",
]

SortDirectionTypeType#

# SortDirectionTypeType usage example

from mypy_boto3_glue.literals import SortDirectionTypeType

def get_value() -> SortDirectionTypeType: