Class: Aws::Endpoints::Endpoint Private
- Inherits:
- 
      Object
      
        - Object
- Aws::Endpoints::Endpoint
 
- 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
- #headers ⇒ Object readonly private
- #metadata ⇒ Object readonly private
- #properties ⇒ Object readonly private
- #url ⇒ Object readonly private
Instance Method Summary collapse
- 
  
    
      #initialize(url:, properties: {}, headers: {}, metadata: {})  ⇒ Endpoint 
    
    
  
  
  
    constructor
  
  
  
  
  
  private
  
    A new instance of Endpoint. 
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
#headers ⇒ Object (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 | 
#metadata ⇒ Object (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 | 
#properties ⇒ Object (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 | 
#url ⇒ Object (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 |