Class: Aws::CloudTrail::Types::LookupAttribute
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::LookupAttribute
- Defined in:
- gems/aws-sdk-cloudtrail/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.
3737 3738 3739 3740 3741 3742 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 3737 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.
3737 3738 3739 3740 3741 3742 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 3737 class LookupAttribute < Struct.new( :attribute_key, :attribute_value) SENSITIVE = [] include Aws::Structure end |