Class: Aws::Firehose::Types::HttpEndpointConfiguration

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

Overview

Describes the configuration of the HTTP endpoint to which Kinesis Firehose delivers data.

Constant Summary collapse

SENSITIVE =
[:url, :access_key]

Instance Attribute Summary collapse

Instance Attribute Details

#access_keyString

The access key required for Kinesis Firehose to authenticate with the HTTP endpoint selected as the destination.

Returns:

  • (String)


2221
2222
2223
2224
2225
2226
2227
# File 'lib/aws-sdk-firehose/types.rb', line 2221

class HttpEndpointConfiguration < Struct.new(
  :url,
  :name,
  :access_key)
  SENSITIVE = [:url, :access_key]
  include Aws::Structure
end

#nameString

The name of the HTTP endpoint selected as the destination.

Returns:

  • (String)


2221
2222
2223
2224
2225
2226
2227
# File 'lib/aws-sdk-firehose/types.rb', line 2221

class HttpEndpointConfiguration < Struct.new(
  :url,
  :name,
  :access_key)
  SENSITIVE = [:url, :access_key]
  include Aws::Structure
end

#urlString

The URL of the HTTP endpoint selected as the destination.

If you choose an HTTP endpoint as your destination, review and follow the instructions in the [Appendix - HTTP Endpoint Delivery Request and Response Specifications].

[1]: docs.aws.amazon.com/firehose/latest/dev/httpdeliveryrequestresponse.html

Returns:

  • (String)


2221
2222
2223
2224
2225
2226
2227
# File 'lib/aws-sdk-firehose/types.rb', line 2221

class HttpEndpointConfiguration < Struct.new(
  :url,
  :name,
  :access_key)
  SENSITIVE = [:url, :access_key]
  include Aws::Structure
end