Skip to content

Literals#

Index > DeviceFarm > Literals

Auto-generated documentation for DeviceFarm type annotations stubs module mypy-boto3-devicefarm.

ArtifactCategoryType#

# ArtifactCategoryType usage example

from mypy_boto3_devicefarm.literals import ArtifactCategoryType

def get_value() -> ArtifactCategoryType:
    return "FILE"
# ArtifactCategoryType definition

ArtifactCategoryType = Literal[
    "FILE",
    "LOG",
    "SCREENSHOT",
]

ArtifactTypeType#

# ArtifactTypeType usage example

from mypy_boto3_devicefarm.literals import ArtifactTypeType

def get_value() -> ArtifactTypeType:
    return "APPIUM_JAVA_OUTPUT"
# ArtifactTypeType definition

ArtifactTypeType = Literal[
    "APPIUM_JAVA_OUTPUT",
    "APPIUM_JAVA_XML_OUTPUT",
    "APPIUM_PYTHON_OUTPUT",
    "APPIUM_PYTHON_XML_OUTPUT",
    "APPIUM_SERVER_OUTPUT",
    "APPLICATION_CRASH_REPORT",
    "AUTOMATION_OUTPUT",
    "CALABASH_JAVA_XML_OUTPUT",
    "CALABASH_JSON_OUTPUT",
    "CALABASH_PRETTY_OUTPUT",
    "CALABASH_STANDARD_OUTPUT",
    "CUSTOMER_ARTIFACT",
    "CUSTOMER_ARTIFACT_LOG",
    "DEVICE_LOG",
    "EXERCISER_MONKEY_OUTPUT",
    "EXPLORER_EVENT_LOG",
    "EXPLORER_SUMMARY_LOG",
    "INSTRUMENTATION_OUTPUT",
    "MESSAGE_LOG",
    "RESULT_LOG",
    "SCREENSHOT",
    "SERVICE_LOG",
    "TESTSPEC_OUTPUT",
    "UNKNOWN",
    "VIDEO",
    "VIDEO_LOG",
    "WEBKIT_LOG",
    "XCTEST_LOG",
]

BillingMethodType#

# BillingMethodType usage example

from mypy_boto3_devicefarm.literals import BillingMethodType

def get_value() -> BillingMethodType:
    return "METERED"
# BillingMethodType definition

BillingMethodType = Literal[
    "METERED",
    "UNMETERED",
]

CurrencyCodeType#

# CurrencyCodeType usage example

from mypy_boto3_devicefarm.literals import CurrencyCodeType

def get_value() -> CurrencyCodeType:
    return "USD"
# CurrencyCodeType definition

CurrencyCodeType = Literal[
    "USD",
]

DeviceAttributeType#

# DeviceAttributeType usage example

from mypy_boto3_devicefarm.literals import DeviceAttributeType

def get_value() -> DeviceAttributeType:
    return "APPIUM_VERSION"
# DeviceAttributeType definition

DeviceAttributeType = Literal[
    "APPIUM_VERSION",
    "ARN",
    "AVAILABILITY",
    "FLEET_TYPE",
    "FORM_FACTOR",
    "INSTANCE_ARN",
    "INSTANCE_LABELS",
    "MANUFACTURER",
    "MODEL",
    "OS_VERSION",
    "PLATFORM",
    "REMOTE_ACCESS_ENABLED",
    "REMOTE_DEBUG_ENABLED",
]

DeviceAvailabilityType#

# DeviceAvailabilityType usage example

from mypy_boto3_devicefarm.literals import DeviceAvailabilityType

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

DeviceAvailabilityType = Literal[
    "AVAILABLE",
    "BUSY",
    "HIGHLY_AVAILABLE",
    "TEMPORARY_NOT_AVAILABLE",
]

DeviceFilterAttributeType#

# DeviceFilterAttributeType usage example

from mypy_boto3_devicefarm.literals import DeviceFilterAttributeType

def get_value() -> DeviceFilterAttributeType:
    return "ARN"
# DeviceFilterAttributeType definition

DeviceFilterAttributeType = Literal[
    "ARN",
    "AVAILABILITY",
    "FLEET_TYPE",
    "FORM_FACTOR",
    "INSTANCE_ARN",
    "INSTANCE_LABELS",
    "MANUFACTURER",
    "MODEL",
    "OS_VERSION",
    "PLATFORM",
    "REMOTE_ACCESS_ENABLED",
    "REMOTE_DEBUG_ENABLED",
]

DeviceFormFactorType#

# DeviceFormFactorType usage example

from mypy_boto3_devicefarm.literals import DeviceFormFactorType

def get_value() -> DeviceFormFactorType:
    return "PHONE"
# DeviceFormFactorType definition

DeviceFormFactorType = Literal[
    "PHONE",
    "TABLET",
]

DevicePlatformType#

# DevicePlatformType usage example

from mypy_boto3_devicefarm.literals import DevicePlatformType

def get_value() -> DevicePlatformType:
    return "ANDROID"
# DevicePlatformType definition

DevicePlatformType = Literal[
    "ANDROID",
    "IOS",
]

DevicePoolTypeType#

# DevicePoolTypeType usage example

from mypy_boto3_devicefarm.literals import DevicePoolTypeType

def get_value() -> DevicePoolTypeType:
    return "CURATED"
# DevicePoolTypeType definition

DevicePoolTypeType = Literal[
    "CURATED",
    "PRIVATE",
]

ExecutionResultCodeType#

# ExecutionResultCodeType usage example

from mypy_boto3_devicefarm.literals import ExecutionResultCodeType

def get_value() -> ExecutionResultCodeType:
    return "PARSING_FAILED"
# ExecutionResultCodeType definition

ExecutionResultCodeType = Literal[
    "PARSING_FAILED",
    "VPC_ENDPOINT_SETUP_FAILED",
]

ExecutionResultType#

# ExecutionResultType usage example

from mypy_boto3_devicefarm.literals import ExecutionResultType

def get_value() -> ExecutionResultType:
    return "ERRORED"
# ExecutionResultType definition

ExecutionResultType = Literal[
    "ERRORED",
    "FAILED",
    "PASSED",
    "PENDING",
    "SKIPPED",
    "STOPPED",
    "WARNED",
]

ExecutionStatusType#

# ExecutionStatusType usage example

from mypy_boto3_devicefarm.literals import ExecutionStatusType

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

ExecutionStatusType = Literal[
    "COMPLETED",
    "PENDING",
    "PENDING_CONCURRENCY",
    "PENDING_DEVICE",
    "PREPARING",
    "PROCESSING",
    "RUNNING",
    "SCHEDULING",
    "STOPPING",
]

GetOfferingStatusPaginatorName#

# GetOfferingStatusPaginatorName usage example

from mypy_boto3_devicefarm.literals import GetOfferingStatusPaginatorName

def get_value() -> GetOfferingStatusPaginatorName:
    return "get_offering_status"
# GetOfferingStatusPaginatorName definition

GetOfferingStatusPaginatorName = Literal[
    "get_offering_status",
]

InstanceStatusType#

# InstanceStatusType usage example

from mypy_boto3_devicefarm.literals import InstanceStatusType

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

InstanceStatusType = Literal[
    "AVAILABLE",
    "IN_USE",
    "NOT_AVAILABLE",
    "PREPARING",
]

InteractionModeType#

# InteractionModeType usage example

from mypy_boto3_devicefarm.literals import InteractionModeType

def get_value() -> InteractionModeType:
    return "INTERACTIVE"
# InteractionModeType definition

InteractionModeType = Literal[
    "INTERACTIVE",
    "NO_VIDEO",
    "VIDEO_ONLY",
]

ListArtifactsPaginatorName#

# ListArtifactsPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListArtifactsPaginatorName

def get_value() -> ListArtifactsPaginatorName:
    return "list_artifacts"
# ListArtifactsPaginatorName definition

ListArtifactsPaginatorName = Literal[
    "list_artifacts",
]

ListDeviceInstancesPaginatorName#

# ListDeviceInstancesPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListDeviceInstancesPaginatorName

def get_value() -> ListDeviceInstancesPaginatorName:
    return "list_device_instances"
# ListDeviceInstancesPaginatorName definition

ListDeviceInstancesPaginatorName = Literal[
    "list_device_instances",
]

ListDevicePoolsPaginatorName#

# ListDevicePoolsPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListDevicePoolsPaginatorName

def get_value() -> ListDevicePoolsPaginatorName:
    return "list_device_pools"
# ListDevicePoolsPaginatorName definition

ListDevicePoolsPaginatorName = Literal[
    "list_device_pools",
]

ListDevicesPaginatorName#

# ListDevicesPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListDevicesPaginatorName

def get_value() -> ListDevicesPaginatorName:
    return "list_devices"
# ListDevicesPaginatorName definition

ListDevicesPaginatorName = Literal[
    "list_devices",
]

ListInstanceProfilesPaginatorName#

# ListInstanceProfilesPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListInstanceProfilesPaginatorName

def get_value() -> ListInstanceProfilesPaginatorName:
    return "list_instance_profiles"
# ListInstanceProfilesPaginatorName definition

ListInstanceProfilesPaginatorName = Literal[
    "list_instance_profiles",
]

ListJobsPaginatorName#

# ListJobsPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListJobsPaginatorName

def get_value() -> ListJobsPaginatorName:
    return "list_jobs"
# ListJobsPaginatorName definition

ListJobsPaginatorName = Literal[
    "list_jobs",
]

ListNetworkProfilesPaginatorName#

# ListNetworkProfilesPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListNetworkProfilesPaginatorName

def get_value() -> ListNetworkProfilesPaginatorName:
    return "list_network_profiles"
# ListNetworkProfilesPaginatorName definition

ListNetworkProfilesPaginatorName = Literal[
    "list_network_profiles",
]

ListOfferingPromotionsPaginatorName#

# ListOfferingPromotionsPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListOfferingPromotionsPaginatorName

def get_value() -> ListOfferingPromotionsPaginatorName:
    return "list_offering_promotions"
# ListOfferingPromotionsPaginatorName definition

ListOfferingPromotionsPaginatorName = Literal[
    "list_offering_promotions",
]

ListOfferingTransactionsPaginatorName#

# ListOfferingTransactionsPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListOfferingTransactionsPaginatorName

def get_value() -> ListOfferingTransactionsPaginatorName:
    return "list_offering_transactions"
# ListOfferingTransactionsPaginatorName definition

ListOfferingTransactionsPaginatorName = Literal[
    "list_offering_transactions",
]

ListOfferingsPaginatorName#

# ListOfferingsPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListOfferingsPaginatorName

def get_value() -> ListOfferingsPaginatorName:
    return "list_offerings"
# ListOfferingsPaginatorName definition

ListOfferingsPaginatorName = Literal[
    "list_offerings",
]

ListProjectsPaginatorName#

# ListProjectsPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListProjectsPaginatorName

def get_value() -> ListProjectsPaginatorName:
    return "list_projects"
# ListProjectsPaginatorName definition

ListProjectsPaginatorName = Literal[
    "list_projects",
]

ListRemoteAccessSessionsPaginatorName#

# ListRemoteAccessSessionsPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListRemoteAccessSessionsPaginatorName

def get_value() -> ListRemoteAccessSessionsPaginatorName:
    return "list_remote_access_sessions"
# ListRemoteAccessSessionsPaginatorName definition

ListRemoteAccessSessionsPaginatorName = Literal[
    "list_remote_access_sessions",
]

ListRunsPaginatorName#

# ListRunsPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListRunsPaginatorName

def get_value() -> ListRunsPaginatorName:
    return "list_runs"
# ListRunsPaginatorName definition

ListRunsPaginatorName = Literal[
    "list_runs",
]

ListSamplesPaginatorName#

# ListSamplesPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListSamplesPaginatorName

def get_value() -> ListSamplesPaginatorName:
    return "list_samples"
# ListSamplesPaginatorName definition

ListSamplesPaginatorName = Literal[
    "list_samples",
]

ListSuitesPaginatorName#

# ListSuitesPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListSuitesPaginatorName

def get_value() -> ListSuitesPaginatorName:
    return "list_suites"
# ListSuitesPaginatorName definition

ListSuitesPaginatorName = Literal[
    "list_suites",
]

ListTestsPaginatorName#

# ListTestsPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListTestsPaginatorName

def get_value() -> ListTestsPaginatorName:
    return "list_tests"
# ListTestsPaginatorName definition

ListTestsPaginatorName = Literal[
    "list_tests",
]

ListUniqueProblemsPaginatorName#

# ListUniqueProblemsPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListUniqueProblemsPaginatorName

def get_value() -> ListUniqueProblemsPaginatorName:
    return "list_unique_problems"
# ListUniqueProblemsPaginatorName definition

ListUniqueProblemsPaginatorName = Literal[
    "list_unique_problems",
]

ListUploadsPaginatorName#

# ListUploadsPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListUploadsPaginatorName

def get_value() -> ListUploadsPaginatorName:
    return "list_uploads"
# ListUploadsPaginatorName definition

ListUploadsPaginatorName = Literal[
    "list_uploads",
]

ListVPCEConfigurationsPaginatorName#

# ListVPCEConfigurationsPaginatorName usage example

from mypy_boto3_devicefarm.literals import ListVPCEConfigurationsPaginatorName

def get_value() -> ListVPCEConfigurationsPaginatorName:
    return "list_vpce_configurations"
# ListVPCEConfigurationsPaginatorName definition

ListVPCEConfigurationsPaginatorName = Literal[
    "list_vpce_configurations",
]

NetworkProfileTypeType#

# NetworkProfileTypeType usage example

from mypy_boto3_devicefarm.literals import NetworkProfileTypeType

def get_value() -> NetworkProfileTypeType:
    return "CURATED"
# NetworkProfileTypeType definition

NetworkProfileTypeType = Literal[
    "CURATED",
    "PRIVATE",
]

OfferingTransactionTypeType#

# OfferingTransactionTypeType usage example

from mypy_boto3_devicefarm.literals import OfferingTransactionTypeType

def get_value() -> OfferingTransactionTypeType:
    return "PURCHASE"
# OfferingTransactionTypeType definition

OfferingTransactionTypeType = Literal[
    "PURCHASE",
    "RENEW",
    "SYSTEM",
]

OfferingTypeType#

# OfferingTypeType usage example

from mypy_boto3_devicefarm.literals import OfferingTypeType

def get_value() -> OfferingTypeType:
    return "RECURRING"
# OfferingTypeType definition

OfferingTypeType = Literal[
    "RECURRING",
]

RecurringChargeFrequencyType#

# RecurringChargeFrequencyType usage example

from mypy_boto3_devicefarm.literals import RecurringChargeFrequencyType

def get_value() -> RecurringChargeFrequencyType:
    return "MONTHLY"
# RecurringChargeFrequencyType definition

RecurringChargeFrequencyType = Literal[
    "MONTHLY",
]

RuleOperatorType#

# RuleOperatorType usage example

from mypy_boto3_devicefarm.literals import RuleOperatorType

def get_value() -> RuleOperatorType:
    return "CONTAINS"
# RuleOperatorType definition

RuleOperatorType = Literal[
    "CONTAINS",
    "EQUALS",
    "GREATER_THAN",
    "GREATER_THAN_OR_EQUALS",
    "IN",
    "LESS_THAN",
    "LESS_THAN_OR_EQUALS",
    "NOT_IN",
]

SampleTypeType#

# SampleTypeType usage example

from mypy_boto3_devicefarm.literals import SampleTypeType

def get_value() -> SampleTypeType:
    return "CPU"
# SampleTypeType definition

SampleTypeType = Literal[
    "CPU",
    "MEMORY",
    "NATIVE_AVG_DRAWTIME",
    "NATIVE_FPS",
    "NATIVE_FRAMES",
    "NATIVE_MAX_DRAWTIME",
    "NATIVE_MIN_DRAWTIME",
    "OPENGL_AVG_DRAWTIME",
    "OPENGL_FPS",
    "OPENGL_FRAMES",
    "OPENGL_MAX_DRAWTIME",
    "OPENGL_MIN_DRAWTIME",
    "RX",
    "RX_RATE",
    "THREADS",
    "TX",
    "TX_RATE",
]

TestGridSessionArtifactCategoryType#

# TestGridSessionArtifactCategoryType usage example

from mypy_boto3_devicefarm.literals import TestGridSessionArtifactCategoryType

def get_value() -> TestGridSessionArtifactCategoryType:
    return "LOG"
# TestGridSessionArtifactCategoryType definition

TestGridSessionArtifactCategoryType = Literal[
    "LOG",
    "VIDEO",
]

TestGridSessionArtifactTypeType#

# TestGridSessionArtifactTypeType usage example

from mypy_boto3_devicefarm.literals import TestGridSessionArtifactTypeType

def get_value() -> TestGridSessionArtifactTypeType:
    return "SELENIUM_LOG"
# TestGridSessionArtifactTypeType definition

TestGridSessionArtifactTypeType = Literal[
    "SELENIUM_LOG",
    "UNKNOWN",
    "VIDEO",
]

TestGridSessionStatusType#

# TestGridSessionStatusType usage example

from mypy_boto3_devicefarm.literals import TestGridSessionStatusType

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

TestGridSessionStatusType = Literal[
    "ACTIVE",
    "CLOSED",
    "ERRORED",
]

TestTypeType#

# TestTypeType usage example

from mypy_boto3_devicefarm.literals import TestTypeType

def get_value() -> TestTypeType:
    return "APPIUM_JAVA_JUNIT"
# TestTypeType definition

TestTypeType = Literal[
    "APPIUM_JAVA_JUNIT",
    "APPIUM_JAVA_TESTNG",
    "APPIUM_NODE",
    "APPIUM_PYTHON",
    "APPIUM_RUBY",
    "APPIUM_WEB_JAVA_JUNIT",
    "APPIUM_WEB_JAVA_TESTNG",
    "APPIUM_WEB_NODE",
    "APPIUM_WEB_PYTHON",
    "APPIUM_WEB_RUBY",
    "BUILTIN_EXPLORER",
    "BUILTIN_FUZZ",
    "CALABASH",
    "INSTRUMENTATION",
    "REMOTE_ACCESS_RECORD",
    "REMOTE_ACCESS_REPLAY",
    "UIAUTOMATION",
    "UIAUTOMATOR",
    "WEB_PERFORMANCE_PROFILE",
    "XCTEST",
    "XCTEST_UI",
]

UploadCategoryType#

# UploadCategoryType usage example

from mypy_boto3_devicefarm.literals import UploadCategoryType

def get_value() -> UploadCategoryType:
    return "CURATED"
# UploadCategoryType definition

UploadCategoryType = Literal[
    "CURATED",
    "PRIVATE",
]

UploadStatusType#

# UploadStatusType usage example

from mypy_boto3_devicefarm.literals import UploadStatusType

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

UploadStatusType = Literal[
    "FAILED",
    "INITIALIZED",
    "PROCESSING",
    "SUCCEEDED",
]

UploadTypeType#

# UploadTypeType usage example

from mypy_boto3_devicefarm.literals import UploadTypeType

def get_value() -> UploadTypeType:
    return "ANDROID_APP"
# UploadTypeType definition

UploadTypeType = Literal[
    "ANDROID_APP",
    "APPIUM_JAVA_JUNIT_TEST_PACKAGE",
    "APPIUM_JAVA_JUNIT_TEST_SPEC",
    "APPIUM_JAVA_TESTNG_TEST_PACKAGE",
    "APPIUM_JAVA_TESTNG_TEST_SPEC",
    "APPIUM_NODE_TEST_PACKAGE",
    "APPIUM_NODE_TEST_SPEC",
    "APPIUM_PYTHON_TEST_PACKAGE",
    "APPIUM_PYTHON_TEST_SPEC",
    "APPIUM_RUBY_TEST_PACKAGE",
    "APPIUM_RUBY_TEST_SPEC",
    "APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE",
    "APPIUM_WEB_JAVA_JUNIT_TEST_SPEC",
    "APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE",
    "APPIUM_WEB_JAVA_TESTNG_TEST_SPEC",
    "APPIUM_WEB_NODE_TEST_PACKAGE",
    "APPIUM_WEB_NODE_TEST_SPEC",
    "APPIUM_WEB_PYTHON_TEST_PACKAGE",
    "APPIUM_WEB_PYTHON_TEST_SPEC",
    "APPIUM_WEB_RUBY_TEST_PACKAGE",
    "APPIUM_WEB_RUBY_TEST_SPEC",
    "CALABASH_TEST_PACKAGE",
    "EXTERNAL_DATA",
    "INSTRUMENTATION_TEST_PACKAGE",
    "INSTRUMENTATION_TEST_SPEC",
    "IOS_APP",
    "UIAUTOMATION_TEST_PACKAGE",
    "UIAUTOMATOR_TEST_PACKAGE",
    "WEB_APP",
    "XCTEST_TEST_PACKAGE",
    "XCTEST_UI_TEST_PACKAGE",
    "XCTEST_UI_TEST_SPEC",
]

DeviceFarmServiceName#

# DeviceFarmServiceName usage example

from mypy_boto3_devicefarm.literals import DeviceFarmServiceName

def get_value() -> DeviceFarmServiceName:
    return "devicefarm"
# DeviceFarmServiceName definition

DeviceFarmServiceName = Literal[
    "devicefarm",
]

ServiceName#

# ServiceName usage example

from mypy_boto3_devicefarm.literals import ServiceName

def get_value() -> ServiceName:
    return "accessanalyzer"
# ServiceName definition

ServiceName = Literal[
    "accessanalyzer",
    "account",
    "acm",
    "acm-pca",
    "alexaforbusiness",
    "amp",
    "amplify",
    "amplifybackend",
    "amplifyuibuilder",
    "apigateway",
    "apigatewaymanagementapi",
    "apigatewayv2",
    "appconfig",
    "appconfigdata",
    "appfabric",
    "appflow",
    "appintegrations",
    "application-autoscaling",
    "application-insights",
    "applicationcostprofiler",
    "appmesh",
    "apprunner",
    "appstream",
    "appsync",
    "arc-zonal-shift",
    "artifact",
    "athena",
    "auditmanager",
    "autoscaling",
    "autoscaling-plans",
    "b2bi",
    "backup",
    "backup-gateway",
    "backupstorage",
    "batch",
    "bcm-data-exports",
    "bedrock",
    "bedrock-agent",
    "bedrock-agent-runtime",
    "bedrock-runtime",
    "billingconductor",
    "braket",
    "budgets",
    "ce",
    "chatbot",
    "chime",
    "chime-sdk-identity",
    "chime-sdk-media-pipelines",
    "chime-sdk-meetings",
    "chime-sdk-messaging",
    "chime-sdk-voice",
    "cleanrooms",
    "cleanroomsml",
    "cloud9",
    "cloudcontrol",
    "clouddirectory",
    "cloudformation",
    "cloudfront",
    "cloudfront-keyvaluestore",
    "cloudhsm",
    "cloudhsmv2",
    "cloudsearch",
    "cloudsearchdomain",
    "cloudtrail",
    "cloudtrail-data",
    "cloudwatch",
    "codeartifact",
    "codebuild",
    "codecatalyst",
    "codecommit",
    "codedeploy",
    "codeguru-reviewer",
    "codeguru-security",
    "codeguruprofiler",
    "codepipeline",
    "codestar",
    "codestar-connections",
    "codestar-notifications",
    "cognito-identity",
    "cognito-idp",
    "cognito-sync",
    "comprehend",
    "comprehendmedical",
    "compute-optimizer",
    "config",
    "connect",
    "connect-contact-lens",
    "connectcampaigns",
    "connectcases",
    "connectparticipant",
    "controltower",
    "cost-optimization-hub",
    "cur",
    "customer-profiles",
    "databrew",
    "dataexchange",
    "datapipeline",
    "datasync",
    "datazone",
    "dax",
    "detective",
    "devicefarm",
    "devops-guru",
    "directconnect",
    "discovery",
    "dlm",
    "dms",
    "docdb",
    "docdb-elastic",
    "drs",
    "ds",
    "dynamodb",
    "dynamodbstreams",
    "ebs",
    "ec2",
    "ec2-instance-connect",
    "ecr",
    "ecr-public",
    "ecs",
    "efs",
    "eks",
    "eks-auth",
    "elastic-inference",
    "elasticache",
    "elasticbeanstalk",
    "elastictranscoder",
    "elb",
    "elbv2",
    "emr",
    "emr-containers",
    "emr-serverless",
    "entityresolution",
    "es",
    "events",
    "evidently",
    "finspace",
    "finspace-data",
    "firehose",
    "fis",
    "fms",
    "forecast",
    "forecastquery",
    "frauddetector",
    "freetier",
    "fsx",
    "gamelift",
    "glacier",
    "globalaccelerator",
    "glue",
    "grafana",
    "greengrass",
    "greengrassv2",
    "groundstation",
    "guardduty",
    "health",
    "healthlake",
    "honeycode",
    "iam",
    "identitystore",
    "imagebuilder",
    "importexport",
    "inspector",
    "inspector-scan",
    "inspector2",
    "internetmonitor",
    "iot",
    "iot-data",
    "iot-jobs-data",
    "iot1click-devices",
    "iot1click-projects",
    "iotanalytics",
    "iotdeviceadvisor",
    "iotevents",
    "iotevents-data",
    "iotfleethub",
    "iotfleetwise",
    "iotsecuretunneling",
    "iotsitewise",
    "iotthingsgraph",
    "iottwinmaker",
    "iotwireless",
    "ivs",
    "ivs-realtime",
    "ivschat",
    "kafka",
    "kafkaconnect",
    "kendra",
    "kendra-ranking",
    "keyspaces",
    "kinesis",
    "kinesis-video-archived-media",
    "kinesis-video-media",
    "kinesis-video-signaling",
    "kinesis-video-webrtc-storage",
    "kinesisanalytics",
    "kinesisanalyticsv2",
    "kinesisvideo",
    "kms",
    "lakeformation",
    "lambda",
    "launch-wizard",
    "lex-models",
    "lex-runtime",
    "lexv2-models",
    "lexv2-runtime",
    "license-manager",
    "license-manager-linux-subscriptions",
    "license-manager-user-subscriptions",
    "lightsail",
    "location",
    "logs",
    "lookoutequipment",
    "lookoutmetrics",
    "lookoutvision",
    "m2",
    "machinelearning",
    "macie2",
    "managedblockchain",
    "managedblockchain-query",
    "marketplace-agreement",
    "marketplace-catalog",
    "marketplace-deployment",
    "marketplace-entitlement",
    "marketplacecommerceanalytics",
    "mediaconnect",
    "mediaconvert",
    "medialive",
    "mediapackage",
    "mediapackage-vod",
    "mediapackagev2",
    "mediastore",
    "mediastore-data",
    "mediatailor",
    "medical-imaging",
    "memorydb",
    "meteringmarketplace",
    "mgh",
    "mgn",
    "migration-hub-refactor-spaces",
    "migrationhub-config",
    "migrationhuborchestrator",
    "migrationhubstrategy",
    "mobile",
    "mq",
    "mturk",
    "mwaa",
    "neptune",
    "neptune-graph",
    "neptunedata",
    "network-firewall",
    "networkmanager",
    "networkmonitor",
    "nimble",
    "oam",
    "omics",
    "opensearch",
    "opensearchserverless",
    "opsworks",
    "opsworkscm",
    "organizations",
    "osis",
    "outposts",
    "panorama",
    "payment-cryptography",
    "payment-cryptography-data",
    "pca-connector-ad",
    "personalize",
    "personalize-events",
    "personalize-runtime",
    "pi",
    "pinpoint",
    "pinpoint-email",
    "pinpoint-sms-voice",
    "pinpoint-sms-voice-v2",
    "pipes",
    "polly",
    "pricing",
    "privatenetworks",
    "proton",
    "qbusiness",
    "qconnect",
    "qldb",
    "qldb-session",
    "quicksight",
    "ram",
    "rbin",
    "rds",
    "rds-data",
    "redshift",
    "redshift-data",
    "redshift-serverless",
    "rekognition",
    "repostspace",
    "resiliencehub",
    "resource-explorer-2",
    "resource-groups",
    "resourcegroupstaggingapi",
    "robomaker",
    "rolesanywhere",
    "route53",
    "route53-recovery-cluster",
    "route53-recovery-control-config",
    "route53-recovery-readiness",
    "route53domains",
    "route53resolver",
    "rum",
    "s3",
    "s3control",
    "s3outposts",
    "sagemaker",
    "sagemaker-a2i-runtime",
    "sagemaker-edge",
    "sagemaker-featurestore-runtime",
    "sagemaker-geospatial",
    "sagemaker-metrics",
    "sagemaker-runtime",
    "savingsplans",
    "scheduler",
    "schemas",
    "sdb",
    "secretsmanager",
    "securityhub",
    "securitylake",
    "serverlessrepo",
    "service-quotas",
    "servicecatalog",
    "servicecatalog-appregistry",
    "servicediscovery",
    "ses",
    "sesv2",
    "shield",
    "signer",
    "simspaceweaver",
    "sms",
    "sms-voice",
    "snow-device-management",
    "snowball",
    "sns",
    "sqs",
    "ssm",
    "ssm-contacts",
    "ssm-incidents",
    "ssm-sap",
    "sso",
    "sso-admin",
    "sso-oidc",
    "stepfunctions",
    "storagegateway",
    "sts",
    "supplychain",
    "support",
    "support-app",
    "swf",
    "synthetics",
    "textract",
    "timestream-influxdb",
    "timestream-query",
    "timestream-write",
    "tnb",
    "transcribe",
    "transfer",
    "translate",
    "trustedadvisor",
    "verifiedpermissions",
    "voice-id",
    "vpc-lattice",
    "waf",
    "waf-regional",
    "wafv2",
    "wellarchitected",
    "wisdom",
    "workdocs",
    "worklink",
    "workmail",
    "workmailmessageflow",
    "workspaces",
    "workspaces-thin-client",
    "workspaces-web",
    "xray",
]

ResourceServiceName#

# ResourceServiceName usage example

from mypy_boto3_devicefarm.literals import ResourceServiceName

def get_value() -> ResourceServiceName:
    return "cloudformation"
# ResourceServiceName definition

ResourceServiceName = Literal[
    "cloudformation",
    "cloudwatch",
    "dynamodb",
    "ec2",
    "glacier",
    "iam",
    "opsworks",
    "s3",
    "sns",
    "sqs",
]

PaginatorName#

# PaginatorName usage example

from mypy_boto3_devicefarm.literals import PaginatorName

def get_value() -> PaginatorName:
    return "get_offering_status"
# PaginatorName definition

PaginatorName = Literal[
    "get_offering_status",
    "list_artifacts",
    "list_device_instances",
    "list_device_pools",
    "list_devices",
    "list_instance_profiles",
    "list_jobs",
    "list_network_profiles",
    "list_offering_promotions",
    "list_offering_transactions",
    "list_offerings",
    "list_projects",
    "list_remote_access_sessions",
    "list_runs",
    "list_samples",
    "list_suites",
    "list_tests",
    "list_unique_problems",
    "list_uploads",
    "list_vpce_configurations",
]

RegionName#

# RegionName usage example

from mypy_boto3_devicefarm.literals import RegionName

def get_value() -> RegionName:
    return "us-west-2"
# RegionName definition

RegionName = Literal[
    "us-west-2",
]