Class: Aws::SecurityAgent::Types::CustomHeader

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

Overview

A custom HTTP header to include in network traffic during penetration testing.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the custom header.

Returns:

  • (String)


1228
1229
1230
1231
1232
1233
# File 'lib/aws-sdk-securityagent/types.rb', line 1228

class CustomHeader < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The value of the custom header.

Returns:

  • (String)


1228
1229
1230
1231
1232
1233
# File 'lib/aws-sdk-securityagent/types.rb', line 1228

class CustomHeader < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end