AppRunner / Client / delete_auto_scaling_configuration
delete_auto_scaling_configuration#
- AppRunner.Client.delete_auto_scaling_configuration(**kwargs)#
Delete an App Runner automatic scaling configuration resource. You can delete a top level auto scaling configuration, a specific revision of one, or all revisions associated with the top level configuration. You can’t delete the default auto scaling configuration or a configuration that’s used by one or more App Runner services.
See also: AWS API Documentation
Request Syntax
response = client.delete_auto_scaling_configuration( AutoScalingConfigurationArn='string', DeleteAllRevisions=True|False )
- Parameters:
AutoScalingConfigurationArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the App Runner auto scaling configuration that you want to delete.
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 deleted.DeleteAllRevisions (boolean) –
Set to
true
to delete all of the revisions associated with theAutoScalingConfigurationArn
parameter value.When
DeleteAllRevisions
is set totrue
, the only valid value for the Amazon Resource Name (ARN) is a partial ARN ending with:.../name
.
- Return type:
dict
- Returns:
Response Syntax
{ 'AutoScalingConfiguration': { 'AutoScalingConfigurationArn': 'string', 'AutoScalingConfigurationName': 'string', 'AutoScalingConfigurationRevision': 123, 'Latest': True|False, 'Status': 'ACTIVE'|'INACTIVE', 'MaxConcurrency': 123, 'MinSize': 123, 'MaxSize': 123, 'CreatedAt': datetime(2015, 1, 1), 'DeletedAt': datetime(2015, 1, 1), 'HasAssociatedService': True|False, 'IsDefault': True|False } }
Response Structure
(dict) –
AutoScalingConfiguration (dict) –
A description of the App Runner auto scaling configuration that this request just deleted.
AutoScalingConfigurationArn (string) –
The Amazon Resource Name (ARN) of this auto scaling configuration.
AutoScalingConfigurationName (string) –
The customer-provided auto scaling configuration name. It can be used in multiple revisions of a configuration.
AutoScalingConfigurationRevision (integer) –
The revision of this auto scaling configuration. It’s unique among all the active configurations (
"Status": "ACTIVE"
) that share the sameAutoScalingConfigurationName
.Latest (boolean) –
It’s set to
true
for the configuration with the highestRevision
among all configurations that share the sameAutoScalingConfigurationName
. It’s set tofalse
otherwise.Status (string) –
The current state of the auto scaling configuration. If the status of a configuration revision is
INACTIVE
, it was deleted and can’t be used. Inactive configuration revisions are permanently removed some time after they are deleted.MaxConcurrency (integer) –
The maximum number of concurrent requests that an instance processes. If the number of concurrent requests exceeds this limit, App Runner scales the service up.
MinSize (integer) –
The minimum number of instances that App Runner provisions for a service. The service always has at least
MinSize
provisioned instances. Some of them actively serve traffic. The rest of them (provisioned and inactive instances) are a cost-effective compute capacity reserve and are ready to be quickly activated. You pay for memory usage of all the provisioned instances. You pay for CPU usage of only the active subset.App Runner temporarily doubles the number of provisioned instances during deployments, to maintain the same capacity for both old and new code.
MaxSize (integer) –
The maximum number of instances that a service scales up to. At most
MaxSize
instances actively serve traffic for your service.CreatedAt (datetime) –
The time when the auto scaling configuration was created. It’s in Unix time stamp format.
DeletedAt (datetime) –
The time when the auto scaling configuration was deleted. It’s in Unix time stamp format.
HasAssociatedService (boolean) –
Indicates if this auto scaling configuration has an App Runner service associated with it. A value of
true
indicates one or more services are associated. A value offalse
indicates no services are associated.IsDefault (boolean) –
Indicates if this auto scaling configuration should be used as the default for a new App Runner service that does not have an auto scaling configuration ARN specified during creation. Each account can have only one default
AutoScalingConfiguration
per region. The defaultAutoScalingConfiguration
can be any revision under the sameAutoScalingConfigurationName
.
Exceptions
AppRunner.Client.exceptions.InvalidRequestException
AppRunner.Client.exceptions.InternalServiceErrorException
AppRunner.Client.exceptions.ResourceNotFoundException