Literals#
Index > CodePipeline > Literals
Auto-generated documentation for CodePipeline type annotations stubs module mypy-boto3-codepipeline.
ActionCategoryType#
# ActionCategoryType usage example
from mypy_boto3_codepipeline.literals import ActionCategoryType
def get_value() -> ActionCategoryType:
return "Approval"
# ActionCategoryType definition
ActionCategoryType = Literal[
"Approval",
"Build",
"Compute",
"Deploy",
"Invoke",
"Source",
"Test",
]
ActionConfigurationPropertyTypeType#
# ActionConfigurationPropertyTypeType usage example
from mypy_boto3_codepipeline.literals import ActionConfigurationPropertyTypeType
def get_value() -> ActionConfigurationPropertyTypeType:
return "Boolean"
# ActionConfigurationPropertyTypeType definition
ActionConfigurationPropertyTypeType = Literal[
"Boolean",
"Number",
"String",
]
ActionExecutionStatusType#
# ActionExecutionStatusType usage example
from mypy_boto3_codepipeline.literals import ActionExecutionStatusType
def get_value() -> ActionExecutionStatusType:
return "Abandoned"
# ActionExecutionStatusType definition
ActionExecutionStatusType = Literal[
"Abandoned",
"Failed",
"InProgress",
"Succeeded",
]
ActionOwnerType#
# ActionOwnerType usage example
from mypy_boto3_codepipeline.literals import ActionOwnerType
def get_value() -> ActionOwnerType:
return "AWS"
# ActionOwnerType definition
ActionOwnerType = Literal[
"AWS",
"Custom",
"ThirdParty",
]
ApprovalStatusType#
# ApprovalStatusType usage example
from mypy_boto3_codepipeline.literals import ApprovalStatusType
def get_value() -> ApprovalStatusType:
return "Approved"
# ApprovalStatusType definition
ApprovalStatusType = Literal[
"Approved",
"Rejected",
]
ArtifactLocationTypeType#
# ArtifactLocationTypeType usage example
from mypy_boto3_codepipeline.literals import ArtifactLocationTypeType
def get_value() -> ArtifactLocationTypeType:
return "S3"
# ArtifactLocationTypeType definition
ArtifactLocationTypeType = Literal[
"S3",
]
ArtifactStoreTypeType#
# ArtifactStoreTypeType usage example
from mypy_boto3_codepipeline.literals import ArtifactStoreTypeType
def get_value() -> ArtifactStoreTypeType:
return "S3"
# ArtifactStoreTypeType definition
ArtifactStoreTypeType = Literal[
"S3",
]
BlockerTypeType#
# BlockerTypeType usage example
from mypy_boto3_codepipeline.literals import BlockerTypeType
def get_value() -> BlockerTypeType:
return "Schedule"
# BlockerTypeType definition
BlockerTypeType = Literal[
"Schedule",
]
ConditionExecutionStatusType#
# ConditionExecutionStatusType usage example
from mypy_boto3_codepipeline.literals import ConditionExecutionStatusType
def get_value() -> ConditionExecutionStatusType:
return "Abandoned"
# ConditionExecutionStatusType definition
ConditionExecutionStatusType = Literal[
"Abandoned",
"Cancelled",
"Errored",
"Failed",
"InProgress",
"Overridden",
"Succeeded",
]
ConditionTypeType#
# ConditionTypeType usage example
from mypy_boto3_codepipeline.literals import ConditionTypeType
def get_value() -> ConditionTypeType:
return "BEFORE_ENTRY"
# ConditionTypeType definition
ConditionTypeType = Literal[
"BEFORE_ENTRY",
"ON_SUCCESS",
]
EncryptionKeyTypeType#
# EncryptionKeyTypeType usage example
from mypy_boto3_codepipeline.literals import EncryptionKeyTypeType
def get_value() -> EncryptionKeyTypeType:
return "KMS"
# EncryptionKeyTypeType definition
EncryptionKeyTypeType = Literal[
"KMS",
]
ExecutionModeType#
# ExecutionModeType usage example
from mypy_boto3_codepipeline.literals import ExecutionModeType
def get_value() -> ExecutionModeType:
return "PARALLEL"
# ExecutionModeType definition
ExecutionModeType = Literal[
"PARALLEL",
"QUEUED",
"SUPERSEDED",
]
ExecutionTypeType#
# ExecutionTypeType usage example
from mypy_boto3_codepipeline.literals import ExecutionTypeType
def get_value() -> ExecutionTypeType:
return "ROLLBACK"
# ExecutionTypeType definition
ExecutionTypeType = Literal[
"ROLLBACK",
"STANDARD",
]
ExecutorTypeType#
# ExecutorTypeType usage example
from mypy_boto3_codepipeline.literals import ExecutorTypeType
def get_value() -> ExecutorTypeType:
return "JobWorker"
# ExecutorTypeType definition
ExecutorTypeType = Literal[
"JobWorker",
"Lambda",
]
FailureTypeType#
# FailureTypeType usage example
from mypy_boto3_codepipeline.literals import FailureTypeType
def get_value() -> FailureTypeType:
return "ConfigurationError"
# FailureTypeType definition
FailureTypeType = Literal[
"ConfigurationError",
"JobFailed",
"PermissionError",
"RevisionOutOfSync",
"RevisionUnavailable",
"SystemUnavailable",
]
GitPullRequestEventTypeType#
# GitPullRequestEventTypeType usage example
from mypy_boto3_codepipeline.literals import GitPullRequestEventTypeType
def get_value() -> GitPullRequestEventTypeType:
return "CLOSED"
# GitPullRequestEventTypeType definition
GitPullRequestEventTypeType = Literal[
"CLOSED",
"OPEN",
"UPDATED",
]
JobStatusType#
# JobStatusType usage example
from mypy_boto3_codepipeline.literals import JobStatusType
def get_value() -> JobStatusType:
return "Created"
# JobStatusType definition
JobStatusType = Literal[
"Created",
"Dispatched",
"Failed",
"InProgress",
"Queued",
"Succeeded",
"TimedOut",
]
ListActionExecutionsPaginatorName#
# ListActionExecutionsPaginatorName usage example
from mypy_boto3_codepipeline.literals import ListActionExecutionsPaginatorName
def get_value() -> ListActionExecutionsPaginatorName:
return "list_action_executions"
# ListActionExecutionsPaginatorName definition
ListActionExecutionsPaginatorName = Literal[
"list_action_executions",
]
ListActionTypesPaginatorName#
# ListActionTypesPaginatorName usage example
from mypy_boto3_codepipeline.literals import ListActionTypesPaginatorName
def get_value() -> ListActionTypesPaginatorName:
return "list_action_types"
# ListActionTypesPaginatorName definition
ListActionTypesPaginatorName = Literal[
"list_action_types",
]
ListPipelineExecutionsPaginatorName#
# ListPipelineExecutionsPaginatorName usage example
from mypy_boto3_codepipeline.literals import ListPipelineExecutionsPaginatorName
def get_value() -> ListPipelineExecutionsPaginatorName:
return "list_pipeline_executions"
# ListPipelineExecutionsPaginatorName definition
ListPipelineExecutionsPaginatorName = Literal[
"list_pipeline_executions",
]
ListPipelinesPaginatorName#
# ListPipelinesPaginatorName usage example
from mypy_boto3_codepipeline.literals import ListPipelinesPaginatorName
def get_value() -> ListPipelinesPaginatorName:
return "list_pipelines"
# ListPipelinesPaginatorName definition
ListPipelinesPaginatorName = Literal[
"list_pipelines",
]
ListRuleExecutionsPaginatorName#
# ListRuleExecutionsPaginatorName usage example
from mypy_boto3_codepipeline.literals import ListRuleExecutionsPaginatorName
def get_value() -> ListRuleExecutionsPaginatorName:
return "list_rule_executions"
# ListRuleExecutionsPaginatorName definition
ListRuleExecutionsPaginatorName = Literal[
"list_rule_executions",
]
ListTagsForResourcePaginatorName#
# ListTagsForResourcePaginatorName usage example
from mypy_boto3_codepipeline.literals import ListTagsForResourcePaginatorName
def get_value() -> ListTagsForResourcePaginatorName:
return "list_tags_for_resource"
# ListTagsForResourcePaginatorName definition
ListTagsForResourcePaginatorName = Literal[
"list_tags_for_resource",
]
ListWebhooksPaginatorName#
# ListWebhooksPaginatorName usage example
from mypy_boto3_codepipeline.literals import ListWebhooksPaginatorName
def get_value() -> ListWebhooksPaginatorName:
return "list_webhooks"
# ListWebhooksPaginatorName definition
ListWebhooksPaginatorName = Literal[
"list_webhooks",
]
PipelineExecutionStatusType#
# PipelineExecutionStatusType usage example
from mypy_boto3_codepipeline.literals import PipelineExecutionStatusType
def get_value() -> PipelineExecutionStatusType:
return "Cancelled"
# PipelineExecutionStatusType definition
PipelineExecutionStatusType = Literal[
"Cancelled",
"Failed",
"InProgress",
"Stopped",
"Stopping",
"Succeeded",
"Superseded",
]
PipelineTriggerProviderTypeType#
# PipelineTriggerProviderTypeType usage example
from mypy_boto3_codepipeline.literals import PipelineTriggerProviderTypeType
def get_value() -> PipelineTriggerProviderTypeType:
return "CodeStarSourceConnection"
# PipelineTriggerProviderTypeType definition
PipelineTriggerProviderTypeType = Literal[
"CodeStarSourceConnection",
]
PipelineTypeType#
# PipelineTypeType usage example
from mypy_boto3_codepipeline.literals import PipelineTypeType
def get_value() -> PipelineTypeType:
return "V1"
# PipelineTypeType definition
PipelineTypeType = Literal[
"V1",
"V2",
]
ResultType#
# ResultType usage example
from mypy_boto3_codepipeline.literals import ResultType
def get_value() -> ResultType:
return "FAIL"
# ResultType definition
ResultType = Literal[
"FAIL",
"RETRY",
"ROLLBACK",
"SKIP",
]
RetryTriggerType#
# RetryTriggerType usage example
from mypy_boto3_codepipeline.literals import RetryTriggerType
def get_value() -> RetryTriggerType:
return "AutomatedStageRetry"
# RetryTriggerType definition
RetryTriggerType = Literal[
"AutomatedStageRetry",
"ManualStageRetry",
]
RuleCategoryType#
# RuleCategoryType usage example
from mypy_boto3_codepipeline.literals import RuleCategoryType
def get_value() -> RuleCategoryType:
return "Rule"
# RuleCategoryType definition
RuleCategoryType = Literal[
"Rule",
]
RuleConfigurationPropertyTypeType#
# RuleConfigurationPropertyTypeType usage example
from mypy_boto3_codepipeline.literals import RuleConfigurationPropertyTypeType
def get_value() -> RuleConfigurationPropertyTypeType:
return "Boolean"
# RuleConfigurationPropertyTypeType definition
RuleConfigurationPropertyTypeType = Literal[
"Boolean",
"Number",
"String",
]
RuleExecutionStatusType#
# RuleExecutionStatusType usage example
from mypy_boto3_codepipeline.literals import RuleExecutionStatusType
def get_value() -> RuleExecutionStatusType:
return "Abandoned"
# RuleExecutionStatusType definition
RuleExecutionStatusType = Literal[
"Abandoned",
"Failed",
"InProgress",
"Succeeded",
]
RuleOwnerType#
# RuleOwnerType usage example
from mypy_boto3_codepipeline.literals import RuleOwnerType
def get_value() -> RuleOwnerType:
return "AWS"
# RuleOwnerType definition
RuleOwnerType = Literal[
"AWS",
]
SourceRevisionTypeType#
# SourceRevisionTypeType usage example
from mypy_boto3_codepipeline.literals import SourceRevisionTypeType
def get_value() -> SourceRevisionTypeType:
return "COMMIT_ID"
# SourceRevisionTypeType definition
SourceRevisionTypeType = Literal[
"COMMIT_ID",
"IMAGE_DIGEST",
"S3_OBJECT_KEY",
"S3_OBJECT_VERSION_ID",
]
StageExecutionStatusType#
# StageExecutionStatusType usage example
from mypy_boto3_codepipeline.literals import StageExecutionStatusType
def get_value() -> StageExecutionStatusType:
return "Cancelled"
# StageExecutionStatusType definition
StageExecutionStatusType = Literal[
"Cancelled",
"Failed",
"InProgress",
"Skipped",
"Stopped",
"Stopping",
"Succeeded",
]
StageRetryModeType#
# StageRetryModeType usage example
from mypy_boto3_codepipeline.literals import StageRetryModeType
def get_value() -> StageRetryModeType:
return "ALL_ACTIONS"
# StageRetryModeType definition
StageRetryModeType = Literal[
"ALL_ACTIONS",
"FAILED_ACTIONS",
]
StageTransitionTypeType#
# StageTransitionTypeType usage example
from mypy_boto3_codepipeline.literals import StageTransitionTypeType
def get_value() -> StageTransitionTypeType:
return "Inbound"
# StageTransitionTypeType definition
StageTransitionTypeType = Literal[
"Inbound",
"Outbound",
]
StartTimeRangeType#
# StartTimeRangeType usage example
from mypy_boto3_codepipeline.literals import StartTimeRangeType
def get_value() -> StartTimeRangeType:
return "All"
# StartTimeRangeType definition
StartTimeRangeType = Literal[
"All",
"Latest",
]
TriggerTypeType#
# TriggerTypeType usage example
from mypy_boto3_codepipeline.literals import TriggerTypeType
def get_value() -> TriggerTypeType:
return "AutomatedRollback"
# TriggerTypeType definition
TriggerTypeType = Literal[
"AutomatedRollback",
"CloudWatchEvent",
"CreatePipeline",
"ManualRollback",
"PollForSourceChanges",
"PutActionRevision",
"StartPipelineExecution",
"Webhook",
"WebhookV2",
]
WebhookAuthenticationTypeType#
# WebhookAuthenticationTypeType usage example
from mypy_boto3_codepipeline.literals import WebhookAuthenticationTypeType
def get_value() -> WebhookAuthenticationTypeType:
return "GITHUB_HMAC"
# WebhookAuthenticationTypeType definition
WebhookAuthenticationTypeType = Literal[
"GITHUB_HMAC",
"IP",
"UNAUTHENTICATED",
]
CodePipelineServiceName#
# CodePipelineServiceName usage example
from mypy_boto3_codepipeline.literals import CodePipelineServiceName
def get_value() -> CodePipelineServiceName:
return "codepipeline"
# CodePipelineServiceName definition
CodePipelineServiceName = Literal[
"codepipeline",
]
ServiceName#
# ServiceName usage example
from mypy_boto3_codepipeline.literals import ServiceName
def get_value() -> ServiceName:
return "accessanalyzer"
# ServiceName definition
ServiceName = Literal[
"accessanalyzer",
"account",
"acm",
"acm-pca",
"amp",
"amplify",
"amplifybackend",
"amplifyuibuilder",
"apigateway",
"apigatewaymanagementapi",
"apigatewayv2",
"appconfig",
"appconfigdata",
"appfabric",
"appflow",
"appintegrations",
"application-autoscaling",
"application-insights",
"application-signals",
"applicationcostprofiler",
"appmesh",
"apprunner",
"appstream",
"appsync",
"apptest",
"arc-zonal-shift",
"artifact",
"athena",
"auditmanager",
"autoscaling",
"autoscaling-plans",
"b2bi",
"backup",
"backup-gateway",
"batch",
"bcm-data-exports",
"bedrock",
"bedrock-agent",
"bedrock-agent-runtime",
"bedrock-runtime",
"billing",
"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",
"codeconnections",
"codedeploy",
"codeguru-reviewer",
"codeguru-security",
"codeguruprofiler",
"codepipeline",
"codestar-connections",
"codestar-notifications",
"cognito-identity",
"cognito-idp",
"cognito-sync",
"comprehend",
"comprehendmedical",
"compute-optimizer",
"config",
"connect",
"connect-contact-lens",
"connectcampaigns",
"connectcampaignsv2",
"connectcases",
"connectparticipant",
"controlcatalog",
"controltower",
"cost-optimization-hub",
"cur",
"customer-profiles",
"databrew",
"dataexchange",
"datapipeline",
"datasync",
"datazone",
"dax",
"deadline",
"detective",
"devicefarm",
"devops-guru",
"directconnect",
"discovery",
"dlm",
"dms",
"docdb",
"docdb-elastic",
"drs",
"ds",
"ds-data",
"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",
"geo-maps",
"geo-places",
"geo-routes",
"glacier",
"globalaccelerator",
"glue",
"grafana",
"greengrass",
"greengrassv2",
"groundstation",
"guardduty",
"health",
"healthlake",
"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",
"mailmanager",
"managedblockchain",
"managedblockchain-query",
"marketplace-agreement",
"marketplace-catalog",
"marketplace-deployment",
"marketplace-entitlement",
"marketplace-reporting",
"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",
"mq",
"mturk",
"mwaa",
"neptune",
"neptune-graph",
"neptunedata",
"network-firewall",
"networkmanager",
"networkmonitor",
"oam",
"omics",
"opensearch",
"opensearchserverless",
"opsworks",
"opsworkscm",
"organizations",
"osis",
"outposts",
"panorama",
"partnercentral-selling",
"payment-cryptography",
"payment-cryptography-data",
"pca-connector-ad",
"pca-connector-scep",
"pcs",
"personalize",
"personalize-events",
"personalize-runtime",
"pi",
"pinpoint",
"pinpoint-email",
"pinpoint-sms-voice",
"pinpoint-sms-voice-v2",
"pipes",
"polly",
"pricing",
"privatenetworks",
"proton",
"qapps",
"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",
"route53profiles",
"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",
"socialmessaging",
"sqs",
"ssm",
"ssm-contacts",
"ssm-incidents",
"ssm-quicksetup",
"ssm-sap",
"sso",
"sso-admin",
"sso-oidc",
"stepfunctions",
"storagegateway",
"sts",
"supplychain",
"support",
"support-app",
"swf",
"synthetics",
"taxsettings",
"textract",
"timestream-influxdb",
"timestream-query",
"timestream-write",
"tnb",
"transcribe",
"transfer",
"translate",
"trustedadvisor",
"verifiedpermissions",
"voice-id",
"vpc-lattice",
"waf",
"waf-regional",
"wafv2",
"wellarchitected",
"wisdom",
"workdocs",
"workmail",
"workmailmessageflow",
"workspaces",
"workspaces-thin-client",
"workspaces-web",
"xray",
]
ResourceServiceName#
# ResourceServiceName usage example
from mypy_boto3_codepipeline.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_codepipeline.literals import PaginatorName
def get_value() -> PaginatorName:
return "list_action_executions"
# PaginatorName definition
PaginatorName = Literal[
"list_action_executions",
"list_action_types",
"list_pipeline_executions",
"list_pipelines",
"list_rule_executions",
"list_tags_for_resource",
"list_webhooks",
]
RegionName#
# RegionName usage example
from mypy_boto3_codepipeline.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",
"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",
]