Class: Aws::Lightsail::Types::GetRelationalDatabaseLogEventsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::GetRelationalDatabaseLogEventsRequest
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_time ⇒ Time
The end of the time interval from which to get log events.
-
#log_stream_name ⇒ String
The name of the log stream.
-
#page_token ⇒ String
The token to advance to the next or previous page of results from your request.
-
#relational_database_name ⇒ String
The name of your database for which to get log events.
-
#start_from_head ⇒ Boolean
Parameter to specify if the log should start from head or tail.
-
#start_time ⇒ Time
The start of the time interval from which to get log events.
Instance Attribute Details
#end_time ⇒ Time
The end of the time interval from which to get log events.
Constraints:
Specified in Coordinated Universal Time (UTC).
Specified in the Unix time format.
For example, if you wish to use an end time of October 1, 2018, at 8 PM UTC, then you input
1538424000as the end time.
9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 9234 class GetRelationalDatabaseLogEventsRequest < Struct.new( :relational_database_name, :log_stream_name, :start_time, :end_time, :start_from_head, :page_token) SENSITIVE = [] include Aws::Structure end |
#log_stream_name ⇒ String
The name of the log stream.
Use the get relational database log streams operation to get a
list of available log streams.
9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 9234 class GetRelationalDatabaseLogEventsRequest < Struct.new( :relational_database_name, :log_stream_name, :start_time, :end_time, :start_from_head, :page_token) SENSITIVE = [] include Aws::Structure end |
#page_token ⇒ String
The token to advance to the next or previous page of results from your request.
To get a page token, perform an initial
GetRelationalDatabaseLogEvents request. If your results are
paginated, the response will return a next forward token and/or next
backward token that you can specify as the page token in a
subsequent request.
9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 9234 class GetRelationalDatabaseLogEventsRequest < Struct.new( :relational_database_name, :log_stream_name, :start_time, :end_time, :start_from_head, :page_token) SENSITIVE = [] include Aws::Structure end |
#relational_database_name ⇒ String
The name of your database for which to get log events.
9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 9234 class GetRelationalDatabaseLogEventsRequest < Struct.new( :relational_database_name, :log_stream_name, :start_time, :end_time, :start_from_head, :page_token) SENSITIVE = [] include Aws::Structure end |
#start_from_head ⇒ Boolean
Parameter to specify if the log should start from head or tail. If
true is specified, the log event starts from the head of the log.
If false is specified, the log event starts from the tail of the
log.
false is the only option
available.
9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 9234 class GetRelationalDatabaseLogEventsRequest < Struct.new( :relational_database_name, :log_stream_name, :start_time, :end_time, :start_from_head, :page_token) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The start of the time interval from which to get log events.
Constraints:
Specified in Coordinated Universal Time (UTC).
Specified in the Unix time format.
For example, if you wish to use a start time of October 1, 2018, at 8 PM UTC, then you input
1538424000as the start time.
9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 9234 class GetRelationalDatabaseLogEventsRequest < Struct.new( :relational_database_name, :log_stream_name, :start_time, :end_time, :start_from_head, :page_token) SENSITIVE = [] include Aws::Structure end |