Class: Aws::Endpoints::Endpoint Private

Inherits:
Object
  • Object
show all
Defined in:
lib/aws-sdk-core/endpoints/endpoint.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(url:, properties: {}, headers: {}, metadata: {}) ⇒ Endpoint

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Endpoint.



6
7
8
9
10
11
# File 'lib/aws-sdk-core/endpoints/endpoint.rb', line 6

def initialize(url:, properties: {}, headers: {}, metadata: {})
  @url = url
  @properties = properties
  @headers = headers
  @metadata = 
end

Instance Attribute Details

#headersObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



15
16
17
# File 'lib/aws-sdk-core/endpoints/endpoint.rb', line 15

def headers
  @headers
end

#metadataObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



16
17
18
# File 'lib/aws-sdk-core/endpoints/endpoint.rb', line 16

def 
  @metadata
end

#propertiesObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



14
15
16
# File 'lib/aws-sdk-core/endpoints/endpoint.rb', line 14

def properties
  @properties
end

#urlObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



13
14
15
# File 'lib/aws-sdk-core/endpoints/endpoint.rb', line 13

def url
  @url
end