Class: Aws::Firehose::Types::HttpEndpointDescription

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

Overview

Describes the HTTP endpoint selected as the destination.

Constant Summary collapse

SENSITIVE =
[:url]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the HTTP endpoint selected as the destination.

Returns:

  • (String)


2205
2206
2207
2208
2209
2210
# File 'lib/aws-sdk-firehose/types.rb', line 2205

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

#urlString

The URL of the HTTP endpoint selected as the destination.

Returns:

  • (String)


2205
2206
2207
2208
2209
2210
# File 'lib/aws-sdk-firehose/types.rb', line 2205

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