Class: Aws::Firehose::Types::HttpEndpointConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Firehose::Types::HttpEndpointConfiguration
 
 
- 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
- 
  
    
      #access_key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The access key required for Kinesis Firehose to authenticate with the HTTP endpoint selected as the destination.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the HTTP endpoint selected as the destination.
 - 
  
    
      #url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The URL of the HTTP endpoint selected as the destination.
 
Instance Attribute Details
#access_key ⇒ String
The access key required for Kinesis Firehose to authenticate with the HTTP endpoint selected as the destination.
      2556 2557 2558 2559 2560 2561 2562  | 
    
      # File 'lib/aws-sdk-firehose/types.rb', line 2556 class HttpEndpointConfiguration < Struct.new( :url, :name, :access_key) SENSITIVE = [:url, :access_key] include Aws::Structure end  | 
  
#name ⇒ String
The name of the HTTP endpoint selected as the destination.
      2556 2557 2558 2559 2560 2561 2562  | 
    
      # File 'lib/aws-sdk-firehose/types.rb', line 2556 class HttpEndpointConfiguration < Struct.new( :url, :name, :access_key) SENSITIVE = [:url, :access_key] include Aws::Structure end  | 
  
#url ⇒ String
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
      2556 2557 2558 2559 2560 2561 2562  | 
    
      # File 'lib/aws-sdk-firehose/types.rb', line 2556 class HttpEndpointConfiguration < Struct.new( :url, :name, :access_key) SENSITIVE = [:url, :access_key] include Aws::Structure end  |