You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CostExplorer::Types::UpdateAnomalySubscriptionRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateAnomalySubscriptionRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  subscription_arn: "GenericString", # required
  threshold: 1.0,
  frequency: "DAILY", # accepts DAILY, IMMEDIATE, WEEKLY
  monitor_arn_list: ["Value"],
  subscribers: [
    {
      address: "SubscriberAddress",
      type: "EMAIL", # accepts EMAIL, SNS
      status: "CONFIRMED", # accepts CONFIRMED, DECLINED
    },
  ],
  subscription_name: "GenericString",
}

Instance Attribute Summary collapse

Instance Attribute Details

#frequencyString

The update to the frequency value at which subscribers will receive notifications.

Possible values:

  • DAILY
  • IMMEDIATE
  • WEEKLY

Returns:

  • (String)

    The update to the frequency value at which subscribers will receive notifications.

#monitor_arn_listArray<String>

A list of cost anomaly subscription ARNs.

Returns:

  • (Array<String>)

    A list of cost anomaly subscription ARNs.

#subscribersArray<Types::Subscriber>

The update to the subscriber list.

Returns:

#subscription_arnString

A cost anomaly subscription Amazon Resource Name (ARN).

Returns:

  • (String)

    A cost anomaly subscription Amazon Resource Name (ARN).

#subscription_nameString

The subscription\'s new name.

Returns:

  • (String)

    The subscription\'s new name.

#thresholdFloat

The update to the threshold value for receiving notifications.

Returns:

  • (Float)

    The update to the threshold value for receiving notifications.