Creates a Deployment resource, which makes a specified RestApi callable over the internet
Source:R/apigateway_operations.R
apigateway_create_deployment.RdCreates a Deployment resource, which makes a specified RestApi callable over the internet.
See https://www.paws-r-sdk.com/docs/apigateway_create_deployment/ for full documentation.
Usage
apigateway_create_deployment(
restApiId,
stageName = NULL,
stageDescription = NULL,
description = NULL,
cacheClusterEnabled = NULL,
cacheClusterSize = NULL,
variables = NULL,
canarySettings = NULL,
tracingEnabled = NULL
)Arguments
- restApiId
[required] The string identifier of the associated RestApi.
- stageName
The name of the Stage resource for the Deployment resource to create.
- stageDescription
The description of the Stage resource for the Deployment resource to create.
- description
The description for the Deployment resource to create.
- cacheClusterEnabled
Enables a cache cluster for the Stage resource specified in the input.
- cacheClusterSize
The stage's cache capacity in GB. For more information about choosing a cache size, see Enabling API caching to enhance responsiveness.
- variables
A map that defines the stage variables for the Stage resource that is associated with the new deployment. Variable names can have alphanumeric and underscore characters, and the values must match
[A-Za-z0-9-._~:/?#&=,]+.- canarySettings
The input configuration for the canary deployment when the deployment is a canary release deployment.
- tracingEnabled
Specifies whether active tracing with X-ray is enabled for the Stage.