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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-securityagent/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)


1863
1864
1865
1866
1867
1868
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 1863

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

#valueString

The value of the custom header.

Returns:

  • (String)


1863
1864
1865
1866
1867
1868
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 1863

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