Deletes a scheduled action previously created using the
PutScheduledUpdateGroupAction
.
Access
public
Parameters
Parameter |
Type |
Required |
Description |
---|---|---|---|
|
Required |
The name of the action you want to delete. [Constraints: The value must be between 1 and 1600 characters, and must match the following regular expression pattern: |
|
|
Optional |
An associative array of parameters that can have the following keys:
|
Returns
Type |
Description |
---|---|
A |
Examples
Delete a scheduled scaling action for an auto scaling group.
// Instantiate the class $as = new AmazonAS(); $response = $as->delete_scheduled_action('my-scheduled-action', array( 'AutoScalingGroupName' => 'my-scaling-group', )); // Success? var_dump($response->isOK());Result:
bool(true)
Related Methods
Source
Method defined in services/as.class.php | Toggle source view (7 lines) | View on GitHub