Class: Aws::CloudTrail::Types::RequestWidget
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::RequestWidget
- Defined in:
- gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb
Overview
Contains information about a widget on a CloudTrail Lake dashboard.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#query_parameters ⇒ Array<String>
The optional query parameters.
-
#query_statement ⇒ String
The query statement for the widget.
-
#view_properties ⇒ Hash<String,String>
The view properties for the widget.
Instance Attribute Details
#query_parameters ⇒ Array<String>
The optional query parameters. The following query parameters are
valid: $StartTime$
, $EndTime$
, and $Period$
.
4641 4642 4643 4644 4645 4646 4647 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 4641 class RequestWidget < Struct.new( :query_statement, :query_parameters, :view_properties) SENSITIVE = [] include Aws::Structure end |
#query_statement ⇒ String
The query statement for the widget. For custom dashboard widgets, you can query across multiple event data stores as long as all event data stores exist in your account.
?
with eventTime
, ?
must be surrounded by
single quotes as follows: '?'
.
4641 4642 4643 4644 4645 4646 4647 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 4641 class RequestWidget < Struct.new( :query_statement, :query_parameters, :view_properties) SENSITIVE = [] include Aws::Structure end |
#view_properties ⇒ Hash<String,String>
The view properties for the widget. For more information about view properties, see View properties for widgets in the CloudTrail User Guide.
4641 4642 4643 4644 4645 4646 4647 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 4641 class RequestWidget < Struct.new( :query_statement, :query_parameters, :view_properties) SENSITIVE = [] include Aws::Structure end |