public void AutoScalingDeletePolicy()
        {
            #region autoscaling-delete-policy-1

            var response = client.DeletePolicy(new DeletePolicyRequest
            {
                AutoScalingGroupName = "my-auto-scaling-group",
                PolicyName           = "my-step-scale-out-policy"
            });


            #endregion
        }
 private Amazon.AutoScaling.Model.DeletePolicyResponse CallAWSServiceOperation(IAmazonAutoScaling client, Amazon.AutoScaling.Model.DeletePolicyRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Auto Scaling", "DeletePolicy");
     try
     {
         #if DESKTOP
         return(client.DeletePolicy(request));
         #elif CORECLR
         return(client.DeletePolicyAsync(request).GetAwaiter().GetResult());
         #else
                 #error "Unknown build edition"
         #endif
     }
     catch (AmazonServiceException exc)
     {
         var webException = exc.InnerException as System.Net.WebException;
         if (webException != null)
         {
             throw new Exception(Utils.Common.FormatNameResolutionFailureMessage(client.Config, webException.Message), webException);
         }
         throw;
     }
 }