- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
UpdateSubscriptionCommand
Updates the details of an existing subscription. Only enter values for parameters you want to change. Empty parameters are not updated.
For accounts that are members of an Organizations organization, Shield Advanced subscriptions are billed against the organization's payer account, regardless of whether the payer account itself is subscribed.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { ShieldClient, UpdateSubscriptionCommand } from "@aws-sdk/client-shield"; // ES Modules import
// const { ShieldClient, UpdateSubscriptionCommand } = require("@aws-sdk/client-shield"); // CommonJS import
const client = new ShieldClient(config);
const input = { // UpdateSubscriptionRequest
AutoRenew: "ENABLED" || "DISABLED",
};
const command = new UpdateSubscriptionCommand(input);
const response = await client.send(command);
// {};
UpdateSubscriptionCommand Input
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
AutoRenew | AutoRenew | undefined | When you initally create a subscription, |
UpdateSubscriptionCommand Output
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
InternalErrorException | server | Exception that indicates that a problem occurred with the service infrastructure. You can retry the request. |
InvalidParameterException | client | Exception that indicates that the parameters passed to the API are invalid. If available, this exception includes details in additional properties. |
LockedSubscriptionException | client | You are trying to update a subscription that has not yet completed the 1-year commitment. You can change the |
OptimisticLockException | client | Exception that indicates that the resource state has been modified by another client. Retrieve the resource and then retry your request. |
ResourceNotFoundException | client | Exception indicating the specified resource does not exist. If available, this exception includes details in additional properties. |
ShieldServiceException | Base exception class for all service exceptions from Shield service. |