Get Deployment
apigateway_get_deployment | R Documentation |
Gets information about a Deployment resource¶
Description¶
Gets information about a Deployment resource.
Usage¶
apigateway_get_deployment(restApiId, deploymentId, embed)
Arguments¶
restApiId |
[required] The string identifier of the associated RestApi. |
deploymentId |
[required] The identifier of the Deployment resource to get information about. |
embed |
A query parameter to retrieve the specified embedded resources of
the returned Deployment resource in the response. In a REST API call,
this |
Value¶
A list with the following syntax:
list(
id = "string",
description = "string",
createdDate = as.POSIXct(
"2015-01-01"
),
apiSummary = list(
list(
list(
authorizationType = "string",
apiKeyRequired = TRUE|FALSE
)
)
)
)
Request syntax¶
svc$get_deployment(
restApiId = "string",
deploymentId = "string",
embed = list(
"string"
)
)