Class: Aws::Route53Domains::Types::ViewBillingRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Domains::Types::ViewBillingRequest
- Defined in:
- gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb
Overview
When making an API call, you may pass ViewBillingRequest data as a hash:
{
start: Time.now,
end: Time.now,
marker: "PageMarker",
max_items: 1,
}
The ViewBilling request includes the following elements.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end ⇒ Time
The end date and time for the time period for which you want a list of billing records.
-
#marker ⇒ String
For an initial request for a list of billing records, omit this element.
-
#max_items ⇒ Integer
The number of billing records to be returned.
-
#start ⇒ Time
The beginning date and time for the time period for which you want a list of billing records.
Instance Attribute Details
#end ⇒ Time
The end date and time for the time period for which you want a list of billing records. Specify the date and time in Unix time format and Coordinated Universal time (UTC).
3264 3265 3266 3267 3268 3269 3270 3271 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 3264 class ViewBillingRequest < Struct.new( :start, :end, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
For an initial request for a list of billing records, omit this
element. If the number of billing records that are associated with
the current Amazon Web Services account during the specified period
is greater than the value that you specified for MaxItems
, you can
use Marker
to return additional billing records. Get the value of
NextPageMarker
from the previous response, and submit another
request that includes the value of NextPageMarker
in the Marker
element.
Constraints: The marker must match the value of NextPageMarker
that was returned in the previous response.
3264 3265 3266 3267 3268 3269 3270 3271 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 3264 class ViewBillingRequest < Struct.new( :start, :end, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#max_items ⇒ Integer
The number of billing records to be returned.
Default: 20
3264 3265 3266 3267 3268 3269 3270 3271 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 3264 class ViewBillingRequest < Struct.new( :start, :end, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#start ⇒ Time
The beginning date and time for the time period for which you want a list of billing records. Specify the date and time in Unix time format and Coordinated Universal time (UTC).
3264 3265 3266 3267 3268 3269 3270 3271 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 3264 class ViewBillingRequest < Struct.new( :start, :end, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |