Description Usage Arguments Value Request syntax
View source: R/apigateway_operations.R
Gets information about a Stage resource.
1 | apigateway_get_stage(restApiId, stageName)
|
restApiId |
[required] [Required] The string identifier of the associated RestApi. |
stageName |
[required] [Required] The name of the Stage resource to get information about. |
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | list(
deploymentId = "string",
clientCertificateId = "string",
stageName = "string",
description = "string",
cacheClusterEnabled = TRUE|FALSE,
cacheClusterSize = "0.5"|"1.6"|"6.1"|"13.5"|"28.4"|"58.2"|"118"|"237",
cacheClusterStatus = "CREATE_IN_PROGRESS"|"AVAILABLE"|"DELETE_IN_PROGRESS"|"NOT_AVAILABLE"|"FLUSH_IN_PROGRESS",
methodSettings = list(
list(
metricsEnabled = TRUE|FALSE,
loggingLevel = "string",
dataTraceEnabled = TRUE|FALSE,
throttlingBurstLimit = 123,
throttlingRateLimit = 123.0,
cachingEnabled = TRUE|FALSE,
cacheTtlInSeconds = 123,
cacheDataEncrypted = TRUE|FALSE,
requireAuthorizationForCacheControl = TRUE|FALSE,
unauthorizedCacheControlHeaderStrategy = "FAIL_WITH_403"|"SUCCEED_WITH_RESPONSE_HEADER"|"SUCCEED_WITHOUT_RESPONSE_HEADER"
)
),
variables = list(
"string"
),
documentationVersion = "string",
accessLogSettings = list(
format = "string",
destinationArn = "string"
),
canarySettings = list(
percentTraffic = 123.0,
deploymentId = "string",
stageVariableOverrides = list(
"string"
),
useStageCache = TRUE|FALSE
),
tracingEnabled = TRUE|FALSE,
webAclArn = "string",
tags = list(
"string"
),
createdDate = as.POSIXct(
"2015-01-01"
),
lastUpdatedDate = as.POSIXct(
"2015-01-01"
)
)
|
1 2 3 4 | svc$get_stage(
restApiId = "string",
stageName = "string"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.