Skip to content

Literals#

Index > CodeDeploy > Literals

Auto-generated documentation for CodeDeploy type annotations stubs module mypy-boto3-codedeploy.

ApplicationRevisionSortByType#

# ApplicationRevisionSortByType usage example

from mypy_boto3_codedeploy.literals import ApplicationRevisionSortByType

def get_value() -> ApplicationRevisionSortByType:
    return "firstUsedTime"
# ApplicationRevisionSortByType definition

ApplicationRevisionSortByType = Literal[
    "firstUsedTime",
    "lastUsedTime",
    "registerTime",
]

AutoRollbackEventType#

# AutoRollbackEventType usage example

from mypy_boto3_codedeploy.literals import AutoRollbackEventType

def get_value() -> AutoRollbackEventType:
    return "DEPLOYMENT_FAILURE"
# AutoRollbackEventType definition

AutoRollbackEventType = Literal[
    "DEPLOYMENT_FAILURE",
    "DEPLOYMENT_STOP_ON_ALARM",
    "DEPLOYMENT_STOP_ON_REQUEST",
]

BundleTypeType#

# BundleTypeType usage example

from mypy_boto3_codedeploy.literals import BundleTypeType

def get_value() -> BundleTypeType:
    return "JSON"
# BundleTypeType definition

BundleTypeType = Literal[
    "JSON",
    "tar",
    "tgz",
    "YAML",
    "zip",
]

ComputePlatformType#

# ComputePlatformType usage example

from mypy_boto3_codedeploy.literals import ComputePlatformType

def get_value() -> ComputePlatformType:
    return "ECS"
# ComputePlatformType definition

ComputePlatformType = Literal[
    "ECS",
    "Lambda",
    "Server",
]

DeploymentCreatorType#

# DeploymentCreatorType usage example

from mypy_boto3_codedeploy.literals import DeploymentCreatorType

def get_value() -> DeploymentCreatorType:
    return "CloudFormation"
# DeploymentCreatorType definition

DeploymentCreatorType = Literal[
    "autoscaling",
    "autoscalingTermination",
    "CloudFormation",
    "CloudFormationRollback",
    "CodeDeploy",
    "CodeDeployAutoUpdate",
    "codeDeployRollback",
    "user",
]

DeploymentOptionType#

# DeploymentOptionType usage example

from mypy_boto3_codedeploy.literals import DeploymentOptionType

def get_value() -> DeploymentOptionType:
    return "WITHOUT_TRAFFIC_CONTROL"
# DeploymentOptionType definition

DeploymentOptionType = Literal[
    "WITH_TRAFFIC_CONTROL",
    "WITHOUT_TRAFFIC_CONTROL",
]

DeploymentReadyActionType#

# DeploymentReadyActionType usage example

from mypy_boto3_codedeploy.literals import DeploymentReadyActionType

def get_value() -> DeploymentReadyActionType:
    return "CONTINUE_DEPLOYMENT"
# DeploymentReadyActionType definition

DeploymentReadyActionType = Literal[
    "CONTINUE_DEPLOYMENT",
    "STOP_DEPLOYMENT",
]

DeploymentStatusType#

# DeploymentStatusType usage example

from mypy_boto3_codedeploy.literals import DeploymentStatusType

def get_value() -> DeploymentStatusType:
    return "Baking"
# DeploymentStatusType definition

DeploymentStatusType = Literal[
    "Baking",
    "Created",
    "Failed",
    "InProgress",
    "Queued",
    "Ready",
    "Stopped",
    "Succeeded",
]

DeploymentSuccessfulWaiterName#

# DeploymentSuccessfulWaiterName usage example

from mypy_boto3_codedeploy.literals import DeploymentSuccessfulWaiterName

def get_value() -> DeploymentSuccessfulWaiterName:
    return "deployment_successful"
# DeploymentSuccessfulWaiterName definition

DeploymentSuccessfulWaiterName = Literal[
    "deployment_successful",
]

DeploymentTargetTypeType#

# DeploymentTargetTypeType usage example

from mypy_boto3_codedeploy.literals import DeploymentTargetTypeType

def get_value() -> DeploymentTargetTypeType:
    return "CloudFormationTarget"
# DeploymentTargetTypeType definition

DeploymentTargetTypeType = Literal[
    "CloudFormationTarget",
    "ECSTarget",
    "InstanceTarget",
    "LambdaTarget",
]

DeploymentTypeType#

# DeploymentTypeType usage example

from mypy_boto3_codedeploy.literals import DeploymentTypeType

def get_value() -> DeploymentTypeType:
    return "BLUE_GREEN"
# DeploymentTypeType definition

DeploymentTypeType = Literal[
    "BLUE_GREEN",
    "IN_PLACE",
]

DeploymentWaitTypeType#

# DeploymentWaitTypeType usage example

from mypy_boto3_codedeploy.literals import DeploymentWaitTypeType

def get_value() -> DeploymentWaitTypeType:
    return "READY_WAIT"
# DeploymentWaitTypeType definition

DeploymentWaitTypeType = Literal[
    "READY_WAIT",
    "TERMINATION_WAIT",
]

EC2TagFilterTypeType#

# EC2TagFilterTypeType usage example

from mypy_boto3_codedeploy.literals import EC2TagFilterTypeType

def get_value() -> EC2TagFilterTypeType:
    return "KEY_AND_VALUE"
# EC2TagFilterTypeType definition

EC2TagFilterTypeType = Literal[
    "KEY_AND_VALUE",
    "KEY_ONLY",
    "VALUE_ONLY",
]

ErrorCodeType#

# ErrorCodeType usage example

from mypy_boto3_codedeploy.literals import ErrorCodeType

def get_value() -> ErrorCodeType:
    return "AGENT_ISSUE"
# ErrorCodeType definition

ErrorCodeType = Literal[
    "AGENT_ISSUE",
    "ALARM_ACTIVE",
    "APPLICATION_MISSING",
    "AUTO_SCALING_CONFIGURATION",
    "AUTO_SCALING_IAM_ROLE_PERMISSIONS",
    "AUTOSCALING_VALIDATION_ERROR",
    "CLOUDFORMATION_STACK_FAILURE",
    "CODEDEPLOY_RESOURCE_CANNOT_BE_FOUND",
    "CUSTOMER_APPLICATION_UNHEALTHY",
    "DEPLOYMENT_GROUP_MISSING",
    "ECS_UPDATE_ERROR",
    "ELASTIC_LOAD_BALANCING_INVALID",
    "ELB_INVALID_INSTANCE",
    "HEALTH_CONSTRAINTS",
    "HEALTH_CONSTRAINTS_INVALID",
    "HOOK_EXECUTION_FAILURE",
    "IAM_ROLE_MISSING",
    "IAM_ROLE_PERMISSIONS",
    "INTERNAL_ERROR",
    "INVALID_ECS_SERVICE",
    "INVALID_LAMBDA_CONFIGURATION",
    "INVALID_LAMBDA_FUNCTION",
    "INVALID_REVISION",
    "MANUAL_STOP",
    "MISSING_BLUE_GREEN_DEPLOYMENT_CONFIGURATION",
    "MISSING_ELB_INFORMATION",
    "MISSING_GITHUB_TOKEN",
    "NO_EC2_SUBSCRIPTION",
    "NO_INSTANCES",
    "OVER_MAX_INSTANCES",
    "RESOURCE_LIMIT_EXCEEDED",
    "REVISION_MISSING",
    "THROTTLED",
    "TIMEOUT",
]

FileExistsBehaviorType#

# FileExistsBehaviorType usage example

from mypy_boto3_codedeploy.literals import FileExistsBehaviorType

def get_value() -> FileExistsBehaviorType:
    return "DISALLOW"
# FileExistsBehaviorType definition

FileExistsBehaviorType = Literal[
    "DISALLOW",
    "OVERWRITE",
    "RETAIN",
]

GreenFleetProvisioningActionType#

# GreenFleetProvisioningActionType usage example

from mypy_boto3_codedeploy.literals import GreenFleetProvisioningActionType

def get_value() -> GreenFleetProvisioningActionType:
    return "COPY_AUTO_SCALING_GROUP"
# GreenFleetProvisioningActionType definition

GreenFleetProvisioningActionType = Literal[
    "COPY_AUTO_SCALING_GROUP",
    "DISCOVER_EXISTING",
]

InstanceActionType#

# InstanceActionType usage example

from mypy_boto3_codedeploy.literals import InstanceActionType

def get_value() -> InstanceActionType:
    return "KEEP_ALIVE"
# InstanceActionType definition

InstanceActionType = Literal[
    "KEEP_ALIVE",
    "TERMINATE",
]

InstanceStatusType#

# InstanceStatusType usage example

from mypy_boto3_codedeploy.literals import InstanceStatusType

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

InstanceStatusType = Literal[
    "Failed",
    "InProgress",
    "Pending",
    "Ready",
    "Skipped",
    "Succeeded",
    "Unknown",
]

InstanceTypeType#

# InstanceTypeType usage example

from mypy_boto3_codedeploy.literals import InstanceTypeType

def get_value() -> InstanceTypeType:
    return "Blue"
# InstanceTypeType definition

InstanceTypeType = Literal[
    "Blue",
    "Green",
]

LifecycleErrorCodeType#

# LifecycleErrorCodeType usage example

from mypy_boto3_codedeploy.literals import LifecycleErrorCodeType

def get_value() -> LifecycleErrorCodeType:
    return "ScriptFailed"
# LifecycleErrorCodeType definition

LifecycleErrorCodeType = Literal[
    "ScriptFailed",
    "ScriptMissing",
    "ScriptNotExecutable",
    "ScriptTimedOut",
    "Success",
    "UnknownError",
]

LifecycleEventStatusType#

# LifecycleEventStatusType usage example

from mypy_boto3_codedeploy.literals import LifecycleEventStatusType

def get_value() -> LifecycleEventStatusType:
    return "Failed"
# LifecycleEventStatusType definition

LifecycleEventStatusType = Literal[
    "Failed",
    "InProgress",
    "Pending",
    "Skipped",
    "Succeeded",
    "Unknown",
]

ListApplicationRevisionsPaginatorName#

# ListApplicationRevisionsPaginatorName usage example

from mypy_boto3_codedeploy.literals import ListApplicationRevisionsPaginatorName

def get_value() -> ListApplicationRevisionsPaginatorName:
    return "list_application_revisions"
# ListApplicationRevisionsPaginatorName definition

ListApplicationRevisionsPaginatorName = Literal[
    "list_application_revisions",
]

ListApplicationsPaginatorName#

# ListApplicationsPaginatorName usage example

from mypy_boto3_codedeploy.literals import ListApplicationsPaginatorName

def get_value() -> ListApplicationsPaginatorName:
    return "list_applications"
# ListApplicationsPaginatorName definition

ListApplicationsPaginatorName = Literal[
    "list_applications",
]

ListDeploymentConfigsPaginatorName#

# ListDeploymentConfigsPaginatorName usage example

from mypy_boto3_codedeploy.literals import ListDeploymentConfigsPaginatorName

def get_value() -> ListDeploymentConfigsPaginatorName:
    return "list_deployment_configs"
# ListDeploymentConfigsPaginatorName definition

ListDeploymentConfigsPaginatorName = Literal[
    "list_deployment_configs",
]

ListDeploymentGroupsPaginatorName#

# ListDeploymentGroupsPaginatorName usage example

from mypy_boto3_codedeploy.literals import ListDeploymentGroupsPaginatorName

def get_value() -> ListDeploymentGroupsPaginatorName:
    return "list_deployment_groups"
# ListDeploymentGroupsPaginatorName definition

ListDeploymentGroupsPaginatorName = Literal[
    "list_deployment_groups",
]

ListDeploymentInstancesPaginatorName#

# ListDeploymentInstancesPaginatorName usage example

from mypy_boto3_codedeploy.literals import ListDeploymentInstancesPaginatorName

def get_value() -> ListDeploymentInstancesPaginatorName:
    return "list_deployment_instances"
# ListDeploymentInstancesPaginatorName definition

ListDeploymentInstancesPaginatorName = Literal[
    "list_deployment_instances",
]

ListDeploymentTargetsPaginatorName#

# ListDeploymentTargetsPaginatorName usage example

from mypy_boto3_codedeploy.literals import ListDeploymentTargetsPaginatorName

def get_value() -> ListDeploymentTargetsPaginatorName:
    return "list_deployment_targets"
# ListDeploymentTargetsPaginatorName definition

ListDeploymentTargetsPaginatorName = Literal[
    "list_deployment_targets",
]

ListDeploymentsPaginatorName#

# ListDeploymentsPaginatorName usage example

from mypy_boto3_codedeploy.literals import ListDeploymentsPaginatorName

def get_value() -> ListDeploymentsPaginatorName:
    return "list_deployments"
# ListDeploymentsPaginatorName definition

ListDeploymentsPaginatorName = Literal[
    "list_deployments",
]

ListGitHubAccountTokenNamesPaginatorName#

# ListGitHubAccountTokenNamesPaginatorName usage example

from mypy_boto3_codedeploy.literals import ListGitHubAccountTokenNamesPaginatorName

def get_value() -> ListGitHubAccountTokenNamesPaginatorName:
    return "list_git_hub_account_token_names"
# ListGitHubAccountTokenNamesPaginatorName definition

ListGitHubAccountTokenNamesPaginatorName = Literal[
    "list_git_hub_account_token_names",
]

ListOnPremisesInstancesPaginatorName#

# ListOnPremisesInstancesPaginatorName usage example

from mypy_boto3_codedeploy.literals import ListOnPremisesInstancesPaginatorName

def get_value() -> ListOnPremisesInstancesPaginatorName:
    return "list_on_premises_instances"
# ListOnPremisesInstancesPaginatorName definition

ListOnPremisesInstancesPaginatorName = Literal[
    "list_on_premises_instances",
]

ListStateFilterActionType#

# ListStateFilterActionType usage example

from mypy_boto3_codedeploy.literals import ListStateFilterActionType

def get_value() -> ListStateFilterActionType:
    return "exclude"
# ListStateFilterActionType definition

ListStateFilterActionType = Literal[
    "exclude",
    "ignore",
    "include",
]

MinimumHealthyHostsPerZoneTypeType#

# MinimumHealthyHostsPerZoneTypeType usage example

from mypy_boto3_codedeploy.literals import MinimumHealthyHostsPerZoneTypeType

def get_value() -> MinimumHealthyHostsPerZoneTypeType:
    return "FLEET_PERCENT"
# MinimumHealthyHostsPerZoneTypeType definition

MinimumHealthyHostsPerZoneTypeType = Literal[
    "FLEET_PERCENT",
    "HOST_COUNT",
]

MinimumHealthyHostsTypeType#

# MinimumHealthyHostsTypeType usage example

from mypy_boto3_codedeploy.literals import MinimumHealthyHostsTypeType

def get_value() -> MinimumHealthyHostsTypeType:
    return "FLEET_PERCENT"
# MinimumHealthyHostsTypeType definition

MinimumHealthyHostsTypeType = Literal[
    "FLEET_PERCENT",
    "HOST_COUNT",
]

OutdatedInstancesStrategyType#

# OutdatedInstancesStrategyType usage example

from mypy_boto3_codedeploy.literals import OutdatedInstancesStrategyType

def get_value() -> OutdatedInstancesStrategyType:
    return "IGNORE"
# OutdatedInstancesStrategyType definition

OutdatedInstancesStrategyType = Literal[
    "IGNORE",
    "UPDATE",
]

RegistrationStatusType#

# RegistrationStatusType usage example

from mypy_boto3_codedeploy.literals import RegistrationStatusType

def get_value() -> RegistrationStatusType:
    return "Deregistered"
# RegistrationStatusType definition

RegistrationStatusType = Literal[
    "Deregistered",
    "Registered",
]

RevisionLocationTypeType#

# RevisionLocationTypeType usage example

from mypy_boto3_codedeploy.literals import RevisionLocationTypeType

def get_value() -> RevisionLocationTypeType:
    return "AppSpecContent"
# RevisionLocationTypeType definition

RevisionLocationTypeType = Literal[
    "AppSpecContent",
    "GitHub",
    "S3",
    "String",
]

SortOrderType#

# SortOrderType usage example

from mypy_boto3_codedeploy.literals import SortOrderType

def get_value() -> SortOrderType:
    return "ascending"
# SortOrderType definition

SortOrderType = Literal[
    "ascending",
    "descending",
]

StopStatusType#

# StopStatusType usage example

from mypy_boto3_codedeploy.literals import StopStatusType

def get_value() -> StopStatusType:
    return "Pending"
# StopStatusType definition

StopStatusType = Literal[
    "Pending",
    "Succeeded",
]

TagFilterTypeType#

# TagFilterTypeType usage example

from mypy_boto3_codedeploy.literals import TagFilterTypeType

def get_value() -> TagFilterTypeType:
    return "KEY_AND_VALUE"
# TagFilterTypeType definition

TagFilterTypeType = Literal[
    "KEY_AND_VALUE",
    "KEY_ONLY",
    "VALUE_ONLY",
]

TargetFilterNameType#

# TargetFilterNameType usage example

from mypy_boto3_codedeploy.literals import TargetFilterNameType

def get_value() -> TargetFilterNameType:
    return "ServerInstanceLabel"
# TargetFilterNameType definition

TargetFilterNameType = Literal[
    "ServerInstanceLabel",
    "TargetStatus",
]

TargetLabelType#

# TargetLabelType usage example

from mypy_boto3_codedeploy.literals import TargetLabelType

def get_value() -> TargetLabelType:
    return "Blue"
# TargetLabelType definition

TargetLabelType = Literal[
    "Blue",
    "Green",
]

TargetStatusType#

# TargetStatusType usage example

from mypy_boto3_codedeploy.literals import TargetStatusType

def get_value() -> TargetStatusType:
    return "Failed"
# TargetStatusType definition

TargetStatusType = Literal[
    "Failed",
    "InProgress",
    "Pending",
    "Ready",
    "Skipped",
    "Succeeded",
    "Unknown",
]

TrafficRoutingTypeType#

# TrafficRoutingTypeType usage example

from mypy_boto3_codedeploy.literals import TrafficRoutingTypeType

def get_value() -> TrafficRoutingTypeType:
    return "AllAtOnce"
# TrafficRoutingTypeType definition

TrafficRoutingTypeType = Literal[
    "AllAtOnce",
    "TimeBasedCanary",
    "TimeBasedLinear",
]

TriggerEventTypeType#

# TriggerEventTypeType usage example

from mypy_boto3_codedeploy.literals import TriggerEventTypeType

def get_value() -> TriggerEventTypeType:
    return "DeploymentFailure"
# TriggerEventTypeType definition

TriggerEventTypeType = Literal[
    "DeploymentFailure",
    "DeploymentReady",
    "DeploymentRollback",
    "DeploymentStart",
    "DeploymentStop",
    "DeploymentSuccess",
    "InstanceFailure",
    "InstanceReady",
    "InstanceStart",
    "InstanceSuccess",
]

CodeDeployServiceName#

# CodeDeployServiceName usage example

from mypy_boto3_codedeploy.literals import CodeDeployServiceName

def get_value() -> CodeDeployServiceName:
    return "codedeploy"
# CodeDeployServiceName definition

CodeDeployServiceName = Literal[
    "codedeploy",
]

ServiceName#

# ServiceName usage example

from mypy_boto3_codedeploy.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_codedeploy.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_codedeploy.literals import PaginatorName

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

PaginatorName = Literal[
    "list_application_revisions",
    "list_applications",
    "list_deployment_configs",
    "list_deployment_groups",
    "list_deployment_instances",
    "list_deployment_targets",
    "list_deployments",
    "list_git_hub_account_token_names",
    "list_on_premises_instances",
]

WaiterName#

# WaiterName usage example

from mypy_boto3_codedeploy.literals import WaiterName

def get_value() -> WaiterName:
    return "deployment_successful"
# WaiterName definition

WaiterName = Literal[
    "deployment_successful",
]

RegionName#

# RegionName usage example

from mypy_boto3_codedeploy.literals import RegionName

def get_value() -> RegionName:
    return "af-south-1"
# RegionName definition

RegionName = Literal[
    "af-south-1",
    "ap-east-1",
    "ap-northeast-1",
    "ap-northeast-2",
    "ap-northeast-3",
    "ap-south-1",
    "ap-south-2",
    "ap-southeast-1",
    "ap-southeast-2",
    "ap-southeast-3",
    "ap-southeast-4",
    "ca-central-1",
    "ca-west-1",
    "eu-central-1",
    "eu-central-2",
    "eu-north-1",
    "eu-south-1",
    "eu-south-2",
    "eu-west-1",
    "eu-west-2",
    "eu-west-3",
    "il-central-1",
    "me-central-1",
    "me-south-1",
    "sa-east-1",
    "us-east-1",
    "us-east-2",
    "us-west-1",
    "us-west-2",
]