Class: Aws::FraudDetector::Types::IngestedEventsTimeWindow
- Inherits:
-
Struct
- Object
- Struct
- Aws::FraudDetector::Types::IngestedEventsTimeWindow
- Defined in:
- gems/aws-sdk-frauddetector/lib/aws-sdk-frauddetector/types.rb
Overview
Note:
When making an API call, you may pass IngestedEventsTimeWindow data as a hash:
{
start_time: "time", # required
end_time: "time", # required
}
The start and stop time of the ingested events.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_time ⇒ String
Timestamp of the final ingested event.
-
#start_time ⇒ String
Timestamp of the first ingensted event.
Instance Attribute Details
#end_time ⇒ String
Timestamp of the final ingested event.
3261 3262 3263 3264 3265 3266 |
# File 'gems/aws-sdk-frauddetector/lib/aws-sdk-frauddetector/types.rb', line 3261 class IngestedEventsTimeWindow < Struct.new( :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ String
Timestamp of the first ingensted event.
3261 3262 3263 3264 3265 3266 |
# File 'gems/aws-sdk-frauddetector/lib/aws-sdk-frauddetector/types.rb', line 3261 class IngestedEventsTimeWindow < Struct.new( :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |