Class: Aws::CloudTrail::Types::LookupAttribute
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::LookupAttribute
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudtrail/types.rb
Overview
Specifies an attribute and value that filter the events returned.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attribute_key ⇒ String
Specifies an attribute on which to filter the events returned.
-
#attribute_value ⇒ String
Specifies a value for the specified ‘AttributeKey`.
Instance Attribute Details
#attribute_key ⇒ String
Specifies an attribute on which to filter the events returned.
3601 3602 3603 3604 3605 3606 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3601 class LookupAttribute < Struct.new( :attribute_key, :attribute_value) SENSITIVE = [] include Aws::Structure end |
#attribute_value ⇒ String
Specifies a value for the specified ‘AttributeKey`.
The maximum length for the ‘AttributeValue` is 2000 characters. The following characters (’‘_`’, ‘` `’, ‘`,`’, ‘`\n`’) count as two characters towards the 2000 character limit.
3601 3602 3603 3604 3605 3606 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3601 class LookupAttribute < Struct.new( :attribute_key, :attribute_value) SENSITIVE = [] include Aws::Structure end |