Class: Aws::AuditManager::Types::SourceKeyword

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-auditmanager/types.rb

Overview

Note:

When making an API call, you may pass SourceKeyword data as a hash:

{
  keyword_input_type: "SELECT_FROM_LIST", # accepts SELECT_FROM_LIST
  keyword_value: "KeywordValue",
}

The keyword to search for in AWS CloudTrail logs.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyword_input_typeString

The method of input for the specified keyword.

Returns:

  • (String)


3540
3541
3542
3543
3544
3545
# File 'lib/aws-sdk-auditmanager/types.rb', line 3540

class SourceKeyword < Struct.new(
  :keyword_input_type,
  :keyword_value)
  SENSITIVE = []
  include Aws::Structure
end

#keyword_valueString

The value of the keyword used to search AWS CloudTrail logs when mapping a control data source.

Returns:

  • (String)


3540
3541
3542
3543
3544
3545
# File 'lib/aws-sdk-auditmanager/types.rb', line 3540

class SourceKeyword < Struct.new(
  :keyword_input_type,
  :keyword_value)
  SENSITIVE = []
  include Aws::Structure
end