Skip to content

Literals#

Index > CloudFront > Literals

Auto-generated documentation for CloudFront type annotations stubs module mypy-boto3-cloudfront.

CachePolicyCookieBehaviorType#

# CachePolicyCookieBehaviorType usage example

from mypy_boto3_cloudfront.literals import CachePolicyCookieBehaviorType

def get_value() -> CachePolicyCookieBehaviorType:
    return "all"
# CachePolicyCookieBehaviorType definition

CachePolicyCookieBehaviorType = Literal[
    "all",
    "allExcept",
    "none",
    "whitelist",
]

CachePolicyHeaderBehaviorType#

# CachePolicyHeaderBehaviorType usage example

from mypy_boto3_cloudfront.literals import CachePolicyHeaderBehaviorType

def get_value() -> CachePolicyHeaderBehaviorType:
    return "none"
# CachePolicyHeaderBehaviorType definition

CachePolicyHeaderBehaviorType = Literal[
    "none",
    "whitelist",
]

CachePolicyQueryStringBehaviorType#

# CachePolicyQueryStringBehaviorType usage example

from mypy_boto3_cloudfront.literals import CachePolicyQueryStringBehaviorType

def get_value() -> CachePolicyQueryStringBehaviorType:
    return "all"
# CachePolicyQueryStringBehaviorType definition

CachePolicyQueryStringBehaviorType = Literal[
    "all",
    "allExcept",
    "none",
    "whitelist",
]

CachePolicyTypeType#

# CachePolicyTypeType usage example

from mypy_boto3_cloudfront.literals import CachePolicyTypeType

def get_value() -> CachePolicyTypeType:
    return "custom"
# CachePolicyTypeType definition

CachePolicyTypeType = Literal[
    "custom",
    "managed",
]

CertificateSourceType#

# CertificateSourceType usage example

from mypy_boto3_cloudfront.literals import CertificateSourceType

def get_value() -> CertificateSourceType:
    return "acm"
# CertificateSourceType definition

CertificateSourceType = Literal[
    "acm",
    "cloudfront",
    "iam",
]

ContinuousDeploymentPolicyTypeType#

# ContinuousDeploymentPolicyTypeType usage example

from mypy_boto3_cloudfront.literals import ContinuousDeploymentPolicyTypeType

def get_value() -> ContinuousDeploymentPolicyTypeType:
    return "SingleHeader"
# ContinuousDeploymentPolicyTypeType definition

ContinuousDeploymentPolicyTypeType = Literal[
    "SingleHeader",
    "SingleWeight",
]

DistributionDeployedWaiterName#

# DistributionDeployedWaiterName usage example

from mypy_boto3_cloudfront.literals import DistributionDeployedWaiterName

def get_value() -> DistributionDeployedWaiterName:
    return "distribution_deployed"
# DistributionDeployedWaiterName definition

DistributionDeployedWaiterName = Literal[
    "distribution_deployed",
]

EventTypeType#

# EventTypeType usage example

from mypy_boto3_cloudfront.literals import EventTypeType

def get_value() -> EventTypeType:
    return "origin-request"
# EventTypeType definition

EventTypeType = Literal[
    "origin-request",
    "origin-response",
    "viewer-request",
    "viewer-response",
]

FormatType#

# FormatType usage example

from mypy_boto3_cloudfront.literals import FormatType

def get_value() -> FormatType:
    return "URLEncoded"
# FormatType definition

FormatType = Literal[
    "URLEncoded",
]

FrameOptionsListType#

# FrameOptionsListType usage example

from mypy_boto3_cloudfront.literals import FrameOptionsListType

def get_value() -> FrameOptionsListType:
    return "DENY"
# FrameOptionsListType definition

FrameOptionsListType = Literal[
    "DENY",
    "SAMEORIGIN",
]

FunctionRuntimeType#

# FunctionRuntimeType usage example

from mypy_boto3_cloudfront.literals import FunctionRuntimeType

def get_value() -> FunctionRuntimeType:
    return "cloudfront-js-1.0"
# FunctionRuntimeType definition

FunctionRuntimeType = Literal[
    "cloudfront-js-1.0",
    "cloudfront-js-2.0",
]

FunctionStageType#

# FunctionStageType usage example

from mypy_boto3_cloudfront.literals import FunctionStageType

def get_value() -> FunctionStageType:
    return "DEVELOPMENT"
# FunctionStageType definition

FunctionStageType = Literal[
    "DEVELOPMENT",
    "LIVE",
]

GeoRestrictionTypeType#

# GeoRestrictionTypeType usage example

from mypy_boto3_cloudfront.literals import GeoRestrictionTypeType

def get_value() -> GeoRestrictionTypeType:
    return "blacklist"
# GeoRestrictionTypeType definition

GeoRestrictionTypeType = Literal[
    "blacklist",
    "none",
    "whitelist",
]

HttpVersionType#

# HttpVersionType usage example

from mypy_boto3_cloudfront.literals import HttpVersionType

def get_value() -> HttpVersionType:
    return "http1.1"
# HttpVersionType definition

HttpVersionType = Literal[
    "http1.1",
    "http2",
    "http2and3",
    "http3",
]

ICPRecordalStatusType#

# ICPRecordalStatusType usage example

from mypy_boto3_cloudfront.literals import ICPRecordalStatusType

def get_value() -> ICPRecordalStatusType:
    return "APPROVED"
# ICPRecordalStatusType definition

ICPRecordalStatusType = Literal[
    "APPROVED",
    "PENDING",
    "SUSPENDED",
]

ImportSourceTypeType#

# ImportSourceTypeType usage example

from mypy_boto3_cloudfront.literals import ImportSourceTypeType

def get_value() -> ImportSourceTypeType:
    return "S3"
# ImportSourceTypeType definition

ImportSourceTypeType = Literal[
    "S3",
]

InvalidationCompletedWaiterName#

# InvalidationCompletedWaiterName usage example

from mypy_boto3_cloudfront.literals import InvalidationCompletedWaiterName

def get_value() -> InvalidationCompletedWaiterName:
    return "invalidation_completed"
# InvalidationCompletedWaiterName definition

InvalidationCompletedWaiterName = Literal[
    "invalidation_completed",
]

ItemSelectionType#

# ItemSelectionType usage example

from mypy_boto3_cloudfront.literals import ItemSelectionType

def get_value() -> ItemSelectionType:
    return "all"
# ItemSelectionType definition

ItemSelectionType = Literal[
    "all",
    "none",
    "whitelist",
]

ListCloudFrontOriginAccessIdentitiesPaginatorName#

# ListCloudFrontOriginAccessIdentitiesPaginatorName usage example

from mypy_boto3_cloudfront.literals import ListCloudFrontOriginAccessIdentitiesPaginatorName

def get_value() -> ListCloudFrontOriginAccessIdentitiesPaginatorName:
    return "list_cloud_front_origin_access_identities"
# ListCloudFrontOriginAccessIdentitiesPaginatorName definition

ListCloudFrontOriginAccessIdentitiesPaginatorName = Literal[
    "list_cloud_front_origin_access_identities",
]

ListDistributionsPaginatorName#

# ListDistributionsPaginatorName usage example

from mypy_boto3_cloudfront.literals import ListDistributionsPaginatorName

def get_value() -> ListDistributionsPaginatorName:
    return "list_distributions"
# ListDistributionsPaginatorName definition

ListDistributionsPaginatorName = Literal[
    "list_distributions",
]

ListInvalidationsPaginatorName#

# ListInvalidationsPaginatorName usage example

from mypy_boto3_cloudfront.literals import ListInvalidationsPaginatorName

def get_value() -> ListInvalidationsPaginatorName:
    return "list_invalidations"
# ListInvalidationsPaginatorName definition

ListInvalidationsPaginatorName = Literal[
    "list_invalidations",
]

ListKeyValueStoresPaginatorName#

# ListKeyValueStoresPaginatorName usage example

from mypy_boto3_cloudfront.literals import ListKeyValueStoresPaginatorName

def get_value() -> ListKeyValueStoresPaginatorName:
    return "list_key_value_stores"
# ListKeyValueStoresPaginatorName definition

ListKeyValueStoresPaginatorName = Literal[
    "list_key_value_stores",
]

ListStreamingDistributionsPaginatorName#

# ListStreamingDistributionsPaginatorName usage example

from mypy_boto3_cloudfront.literals import ListStreamingDistributionsPaginatorName

def get_value() -> ListStreamingDistributionsPaginatorName:
    return "list_streaming_distributions"
# ListStreamingDistributionsPaginatorName definition

ListStreamingDistributionsPaginatorName = Literal[
    "list_streaming_distributions",
]

MethodType#

# MethodType usage example

from mypy_boto3_cloudfront.literals import MethodType

def get_value() -> MethodType:
    return "DELETE"
# MethodType definition

MethodType = Literal[
    "DELETE",
    "GET",
    "HEAD",
    "OPTIONS",
    "PATCH",
    "POST",
    "PUT",
]

MinimumProtocolVersionType#

# MinimumProtocolVersionType usage example

from mypy_boto3_cloudfront.literals import MinimumProtocolVersionType

def get_value() -> MinimumProtocolVersionType:
    return "SSLv3"
# MinimumProtocolVersionType definition

MinimumProtocolVersionType = Literal[
    "SSLv3",
    "TLSv1",
    "TLSv1.1_2016",
    "TLSv1.2_2018",
    "TLSv1.2_2019",
    "TLSv1.2_2021",
    "TLSv1_2016",
]

OriginAccessControlOriginTypesType#

# OriginAccessControlOriginTypesType usage example

from mypy_boto3_cloudfront.literals import OriginAccessControlOriginTypesType

def get_value() -> OriginAccessControlOriginTypesType:
    return "mediastore"
# OriginAccessControlOriginTypesType definition

OriginAccessControlOriginTypesType = Literal[
    "mediastore",
    "s3",
]

OriginAccessControlSigningBehaviorsType#

# OriginAccessControlSigningBehaviorsType usage example

from mypy_boto3_cloudfront.literals import OriginAccessControlSigningBehaviorsType

def get_value() -> OriginAccessControlSigningBehaviorsType:
    return "always"
# OriginAccessControlSigningBehaviorsType definition

OriginAccessControlSigningBehaviorsType = Literal[
    "always",
    "never",
    "no-override",
]

OriginAccessControlSigningProtocolsType#

# OriginAccessControlSigningProtocolsType usage example

from mypy_boto3_cloudfront.literals import OriginAccessControlSigningProtocolsType

def get_value() -> OriginAccessControlSigningProtocolsType:
    return "sigv4"
# OriginAccessControlSigningProtocolsType definition

OriginAccessControlSigningProtocolsType = Literal[
    "sigv4",
]

OriginProtocolPolicyType#

# OriginProtocolPolicyType usage example

from mypy_boto3_cloudfront.literals import OriginProtocolPolicyType

def get_value() -> OriginProtocolPolicyType:
    return "http-only"
# OriginProtocolPolicyType definition

OriginProtocolPolicyType = Literal[
    "http-only",
    "https-only",
    "match-viewer",
]

OriginRequestPolicyCookieBehaviorType#

# OriginRequestPolicyCookieBehaviorType usage example

from mypy_boto3_cloudfront.literals import OriginRequestPolicyCookieBehaviorType

def get_value() -> OriginRequestPolicyCookieBehaviorType:
    return "all"
# OriginRequestPolicyCookieBehaviorType definition

OriginRequestPolicyCookieBehaviorType = Literal[
    "all",
    "allExcept",
    "none",
    "whitelist",
]

OriginRequestPolicyHeaderBehaviorType#

# OriginRequestPolicyHeaderBehaviorType usage example

from mypy_boto3_cloudfront.literals import OriginRequestPolicyHeaderBehaviorType

def get_value() -> OriginRequestPolicyHeaderBehaviorType:
    return "allExcept"
# OriginRequestPolicyHeaderBehaviorType definition

OriginRequestPolicyHeaderBehaviorType = Literal[
    "allExcept",
    "allViewer",
    "allViewerAndWhitelistCloudFront",
    "none",
    "whitelist",
]

OriginRequestPolicyQueryStringBehaviorType#

# OriginRequestPolicyQueryStringBehaviorType usage example

from mypy_boto3_cloudfront.literals import OriginRequestPolicyQueryStringBehaviorType

def get_value() -> OriginRequestPolicyQueryStringBehaviorType:
    return "all"
# OriginRequestPolicyQueryStringBehaviorType definition

OriginRequestPolicyQueryStringBehaviorType = Literal[
    "all",
    "allExcept",
    "none",
    "whitelist",
]

OriginRequestPolicyTypeType#

# OriginRequestPolicyTypeType usage example

from mypy_boto3_cloudfront.literals import OriginRequestPolicyTypeType

def get_value() -> OriginRequestPolicyTypeType:
    return "custom"
# OriginRequestPolicyTypeType definition

OriginRequestPolicyTypeType = Literal[
    "custom",
    "managed",
]

PriceClassType#

# PriceClassType usage example

from mypy_boto3_cloudfront.literals import PriceClassType

def get_value() -> PriceClassType:
    return "PriceClass_100"
# PriceClassType definition

PriceClassType = Literal[
    "PriceClass_100",
    "PriceClass_200",
    "PriceClass_All",
]

RealtimeMetricsSubscriptionStatusType#

# RealtimeMetricsSubscriptionStatusType usage example

from mypy_boto3_cloudfront.literals import RealtimeMetricsSubscriptionStatusType

def get_value() -> RealtimeMetricsSubscriptionStatusType:
    return "Disabled"
# RealtimeMetricsSubscriptionStatusType definition

RealtimeMetricsSubscriptionStatusType = Literal[
    "Disabled",
    "Enabled",
]

ReferrerPolicyListType#

# ReferrerPolicyListType usage example

from mypy_boto3_cloudfront.literals import ReferrerPolicyListType

def get_value() -> ReferrerPolicyListType:
    return "no-referrer"
# ReferrerPolicyListType definition

ReferrerPolicyListType = Literal[
    "no-referrer",
    "no-referrer-when-downgrade",
    "origin",
    "origin-when-cross-origin",
    "same-origin",
    "strict-origin",
    "strict-origin-when-cross-origin",
    "unsafe-url",
]

ResponseHeadersPolicyAccessControlAllowMethodsValuesType#

# ResponseHeadersPolicyAccessControlAllowMethodsValuesType usage example

from mypy_boto3_cloudfront.literals import ResponseHeadersPolicyAccessControlAllowMethodsValuesType

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

ResponseHeadersPolicyAccessControlAllowMethodsValuesType = Literal[
    "ALL",
    "DELETE",
    "GET",
    "HEAD",
    "OPTIONS",
    "PATCH",
    "POST",
    "PUT",
]

ResponseHeadersPolicyTypeType#

# ResponseHeadersPolicyTypeType usage example

from mypy_boto3_cloudfront.literals import ResponseHeadersPolicyTypeType

def get_value() -> ResponseHeadersPolicyTypeType:
    return "custom"
# ResponseHeadersPolicyTypeType definition

ResponseHeadersPolicyTypeType = Literal[
    "custom",
    "managed",
]

SSLSupportMethodType#

# SSLSupportMethodType usage example

from mypy_boto3_cloudfront.literals import SSLSupportMethodType

def get_value() -> SSLSupportMethodType:
    return "sni-only"
# SSLSupportMethodType definition

SSLSupportMethodType = Literal[
    "sni-only",
    "static-ip",
    "vip",
]

SslProtocolType#

# SslProtocolType usage example

from mypy_boto3_cloudfront.literals import SslProtocolType

def get_value() -> SslProtocolType:
    return "SSLv3"
# SslProtocolType definition

SslProtocolType = Literal[
    "SSLv3",
    "TLSv1",
    "TLSv1.1",
    "TLSv1.2",
]

StreamingDistributionDeployedWaiterName#

# StreamingDistributionDeployedWaiterName usage example

from mypy_boto3_cloudfront.literals import StreamingDistributionDeployedWaiterName

def get_value() -> StreamingDistributionDeployedWaiterName:
    return "streaming_distribution_deployed"
# StreamingDistributionDeployedWaiterName definition

StreamingDistributionDeployedWaiterName = Literal[
    "streaming_distribution_deployed",
]

ViewerProtocolPolicyType#

# ViewerProtocolPolicyType usage example

from mypy_boto3_cloudfront.literals import ViewerProtocolPolicyType

def get_value() -> ViewerProtocolPolicyType:
    return "allow-all"
# ViewerProtocolPolicyType definition

ViewerProtocolPolicyType = Literal[
    "allow-all",
    "https-only",
    "redirect-to-https",
]

CloudFrontServiceName#

# CloudFrontServiceName usage example

from mypy_boto3_cloudfront.literals import CloudFrontServiceName

def get_value() -> CloudFrontServiceName:
    return "cloudfront"
# CloudFrontServiceName definition

CloudFrontServiceName = Literal[
    "cloudfront",
]

ServiceName#

# ServiceName usage example

from mypy_boto3_cloudfront.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_cloudfront.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_cloudfront.literals import PaginatorName

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

PaginatorName = Literal[
    "list_cloud_front_origin_access_identities",
    "list_distributions",
    "list_invalidations",
    "list_key_value_stores",
    "list_streaming_distributions",
]

WaiterName#

# WaiterName usage example

from mypy_boto3_cloudfront.literals import WaiterName

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

WaiterName = Literal[
    "distribution_deployed",
    "invalidation_completed",
    "streaming_distribution_deployed",
]