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

#name ⇒ String

The name of the custom header.

Returns:

  • (String)


3274
3275
3276
3277
3278
3279
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 3274

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

#value ⇒ String

The value of the custom header.

Returns:

  • (String)


3274
3275
3276
3277
3278
3279
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 3274

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