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

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

Overview

Custom headers to be set for network requests

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

Name of header to set value for

Returns:

  • (String)


1198
1199
1200
1201
1202
1203
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 1198

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

#valueString

Value to set for header

Returns:

  • (String)


1198
1199
1200
1201
1202
1203
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 1198

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