Skip to content

Update Default Auto Scaling Configuration

apprunner_update_default_auto_scaling_configuration R Documentation

Update an auto scaling configuration to be the default

Description

Update an auto scaling configuration to be the default. The existing default auto scaling configuration will be set to non-default automatically.

Usage

apprunner_update_default_auto_scaling_configuration(
  AutoScalingConfigurationArn)

Arguments

AutoScalingConfigurationArn

[required] The Amazon Resource Name (ARN) of the App Runner auto scaling configuration that you want to set as the default.

The ARN can be a full auto scaling configuration ARN, or a partial ARN ending with either .../name or .../name/revision . If a revision isn't specified, the latest active revision is set as the default.

Value

A list with the following syntax:

list(
  AutoScalingConfiguration = list(
    AutoScalingConfigurationArn = "string",
    AutoScalingConfigurationName = "string",
    AutoScalingConfigurationRevision = 123,
    Latest = TRUE|FALSE,
    Status = "ACTIVE"|"INACTIVE",
    MaxConcurrency = 123,
    MinSize = 123,
    MaxSize = 123,
    CreatedAt = as.POSIXct(
      "2015-01-01"
    ),
    DeletedAt = as.POSIXct(
      "2015-01-01"
    ),
    HasAssociatedService = TRUE|FALSE,
    IsDefault = TRUE|FALSE
  )
)

Request syntax

svc$update_default_auto_scaling_configuration(
  AutoScalingConfigurationArn = "string"
)