Class: Aws::Lightsail::Types::GetRelationalDatabaseEventsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::GetRelationalDatabaseEventsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lightsail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#duration_in_minutes ⇒ Integer
The number of minutes in the past from which to retrieve events.
-
#page_token ⇒ String
The token to advance to the next page of results from your request.
-
#relational_database_name ⇒ String
The name of the database from which to get events.
Instance Attribute Details
#duration_in_minutes ⇒ Integer
The number of minutes in the past from which to retrieve events. For example, to get all events from the past 2 hours, enter 120.
Default: ‘60`
The minimum is 1 and the maximum is 14 days (20160 minutes).
9008 9009 9010 9011 9012 9013 9014 |
# File 'lib/aws-sdk-lightsail/types.rb', line 9008 class GetRelationalDatabaseEventsRequest < Struct.new( :relational_database_name, :duration_in_minutes, :page_token) SENSITIVE = [] include Aws::Structure end |
#page_token ⇒ String
The token to advance to the next page of results from your request.
To get a page token, perform an initial ‘GetRelationalDatabaseEvents` request. If your results are paginated, the response will return a next page token that you can specify as the page token in a subsequent request.
9008 9009 9010 9011 9012 9013 9014 |
# File 'lib/aws-sdk-lightsail/types.rb', line 9008 class GetRelationalDatabaseEventsRequest < Struct.new( :relational_database_name, :duration_in_minutes, :page_token) SENSITIVE = [] include Aws::Structure end |
#relational_database_name ⇒ String
The name of the database from which to get events.
9008 9009 9010 9011 9012 9013 9014 |
# File 'lib/aws-sdk-lightsail/types.rb', line 9008 class GetRelationalDatabaseEventsRequest < Struct.new( :relational_database_name, :duration_in_minutes, :page_token) SENSITIVE = [] include Aws::Structure end |