Get Deployment Config
| codedeploy_get_deployment_config | R Documentation | 
Gets information about a deployment configuration¶
Description¶
Gets information about a deployment configuration.
Usage¶
codedeploy_get_deployment_config(deploymentConfigName)
Arguments¶
deploymentConfigName | 
[required] The name of a deployment configuration associated with the user or Amazon Web Services account.  | 
Value¶
A list with the following syntax:
list(
  deploymentConfigInfo = list(
    deploymentConfigId = "string",
    deploymentConfigName = "string",
    minimumHealthyHosts = list(
      type = "HOST_COUNT"|"FLEET_PERCENT",
      value = 123
    ),
    createTime = as.POSIXct(
      "2015-01-01"
    ),
    computePlatform = "Server"|"Lambda"|"ECS",
    trafficRoutingConfig = list(
      type = "TimeBasedCanary"|"TimeBasedLinear"|"AllAtOnce",
      timeBasedCanary = list(
        canaryPercentage = 123,
        canaryInterval = 123
      ),
      timeBasedLinear = list(
        linearPercentage = 123,
        linearInterval = 123
      )
    ),
    zonalConfig = list(
      firstZoneMonitorDurationInSeconds = 123,
      monitorDurationInSeconds = 123,
      minimumHealthyHostsPerZone = list(
        type = "HOST_COUNT"|"FLEET_PERCENT",
        value = 123
      )
    )
  )
)
Request syntax¶
svc$get_deployment_config(
  deploymentConfigName = "string"
)