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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-firehose/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)


2241
2242
2243
2244
2245
2246
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 2241

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)


2241
2242
2243
2244
2245
2246
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 2241

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