Class: Aws::Billing::Types::BillingViewHealthStatus

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-billing/lib/aws-sdk-billing/types.rb

Overview

Represents the health status of a billing view, including a status code and optional reasons for the status.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#status_codeString

The current health status code of the billing view.

Returns:

  • (String)


171
172
173
174
175
176
# File 'gems/aws-sdk-billing/lib/aws-sdk-billing/types.rb', line 171

class BillingViewHealthStatus < Struct.new(
  :status_code,
  :status_reasons)
  SENSITIVE = []
  include Aws::Structure
end

#status_reasonsArray<String>

A list of reasons explaining the current health status, if applicable.

Returns:

  • (Array<String>)


171
172
173
174
175
176
# File 'gems/aws-sdk-billing/lib/aws-sdk-billing/types.rb', line 171

class BillingViewHealthStatus < Struct.new(
  :status_code,
  :status_reasons)
  SENSITIVE = []
  include Aws::Structure
end