Class: Aws::CloudTrail::Types::CancelQueryRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::CancelQueryRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudtrail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_data_store ⇒ String
The ARN (or the ID suffix of the ARN) of an event data store on which the specified query is running.
-
#event_data_store_owner_account_id ⇒ String
The account ID of the event data store owner.
-
#query_id ⇒ String
The ID of the query that you want to cancel.
Instance Attribute Details
#event_data_store ⇒ String
The ARN (or the ID suffix of the ARN) of an event data store on which the specified query is running.
205 206 207 208 209 210 211 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 205 class CancelQueryRequest < Struct.new( :event_data_store, :query_id, :event_data_store_owner_account_id) SENSITIVE = [] include Aws::Structure end |
#event_data_store_owner_account_id ⇒ String
The account ID of the event data store owner.
205 206 207 208 209 210 211 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 205 class CancelQueryRequest < Struct.new( :event_data_store, :query_id, :event_data_store_owner_account_id) SENSITIVE = [] include Aws::Structure end |
#query_id ⇒ String
The ID of the query that you want to cancel. The ‘QueryId` comes from the response of a `StartQuery` operation.
205 206 207 208 209 210 211 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 205 class CancelQueryRequest < Struct.new( :event_data_store, :query_id, :event_data_store_owner_account_id) SENSITIVE = [] include Aws::Structure end |