Class: Aws::Firehose::Types::HttpEndpointConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::HttpEndpointConfiguration
- Defined in:
- gems/aws-sdk-firehose/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.
2762 2763 2764 2765 2766 2767 2768 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 2762 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.
2762 2763 2764 2765 2766 2767 2768 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 2762 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.
2762 2763 2764 2765 2766 2767 2768 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 2762 class HttpEndpointConfiguration < Struct.new( :url, :name, :access_key) SENSITIVE = [:url, :access_key] include Aws::Structure end |