Class: Aws::Route53Domains::Types::ViewBillingRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Domains::Types::ViewBillingRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-route53domains/types.rb
Overview
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).
3169 3170 3171 3172 3173 3174 3175 3176 |
# File 'lib/aws-sdk-route53domains/types.rb', line 3169 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.
3169 3170 3171 3172 3173 3174 3175 3176 |
# File 'lib/aws-sdk-route53domains/types.rb', line 3169 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
3169 3170 3171 3172 3173 3174 3175 3176 |
# File 'lib/aws-sdk-route53domains/types.rb', line 3169 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).
3169 3170 3171 3172 3173 3174 3175 3176 |
# File 'lib/aws-sdk-route53domains/types.rb', line 3169 class ViewBillingRequest < Struct.new( :start, :end, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |