Class: Aws::Invoicing::Types::ListInvoiceUnitsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Invoicing::Types::ListInvoiceUnitsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-invoicing/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#as_of ⇒ Time
The state of an invoice unit at a specified time.
-
#filters ⇒ Types::Filters
An optional input to the list API.
-
#max_results ⇒ Integer
The maximum number of invoice units that can be returned.
-
#next_token ⇒ String
The next token used to indicate where the returned list should start from.
Instance Attribute Details
#as_of ⇒ Time
The state of an invoice unit at a specified time. You can see legacy invoice units that are currently deleted if the ‘AsOf` time is set to before it was deleted. If an `AsOf` is not provided, the default value is the current time.
1124 1125 1126 1127 1128 1129 1130 1131 |
# File 'lib/aws-sdk-invoicing/types.rb', line 1124 class ListInvoiceUnitsRequest < Struct.new( :filters, :next_token, :max_results, :as_of) SENSITIVE = [] include Aws::Structure end |
#filters ⇒ Types::Filters
An optional input to the list API. If multiple filters are specified, the returned list will be a configuration that match all of the provided filters. Supported filter types are ‘InvoiceReceivers`, `Names`, and `Accounts`.
1124 1125 1126 1127 1128 1129 1130 1131 |
# File 'lib/aws-sdk-invoicing/types.rb', line 1124 class ListInvoiceUnitsRequest < Struct.new( :filters, :next_token, :max_results, :as_of) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of invoice units that can be returned.
1124 1125 1126 1127 1128 1129 1130 1131 |
# File 'lib/aws-sdk-invoicing/types.rb', line 1124 class ListInvoiceUnitsRequest < Struct.new( :filters, :next_token, :max_results, :as_of) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The next token used to indicate where the returned list should start from.
1124 1125 1126 1127 1128 1129 1130 1131 |
# File 'lib/aws-sdk-invoicing/types.rb', line 1124 class ListInvoiceUnitsRequest < Struct.new( :filters, :next_token, :max_results, :as_of) SENSITIVE = [] include Aws::Structure end |