Class: Aws::CloudTrail::Types::RequestWidget
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::RequestWidget
- Includes:
- Structure
- Defined in:
- 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 '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.
<note markdown=“1”> When a query uses ‘?` with `eventTime`, `?` must be surrounded by single quotes as follows: `’?‘`.
</note>
4641 4642 4643 4644 4645 4646 4647 |
# File '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 ][1] in the *CloudTrail User Guide*.
[1]: docs.aws.amazon.com/awscloudtrail/latest/userguide/lake-widget-properties.html
4641 4642 4643 4644 4645 4646 4647 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 4641 class RequestWidget < Struct.new( :query_statement, :query_parameters, :view_properties) SENSITIVE = [] include Aws::Structure end |