Class IdentifierBindingIndex

java.lang.Object
software.amazon.smithy.model.knowledge.IdentifierBindingIndex
All Implemented Interfaces:
KnowledgeIndex

public final class IdentifierBindingIndex extends Object implements KnowledgeIndex
Index of operation shapes to the identifiers bound to the operation.
  • Constructor Details

    • IdentifierBindingIndex

      public IdentifierBindingIndex(Model model)
  • Method Details

    • of

      public static IdentifierBindingIndex of(Model model)
    • getOperationBindingType

      public IdentifierBindingIndex.BindingType getOperationBindingType(ToShapeId resource, ToShapeId operation)
      Gets the identifier binding type of an operation to a resource.

      The NONE Binding type is returned if the resource can't be found, the operation can't be found, or if the operation is not bound to the resource.

      Parameters:
      resource - Shape ID of a resource.
      operation - Shape ID of an operation.
      Returns:
      Returns the binding type of the operation.
    • getOperationInputBindings

      public Map<String,String> getOperationInputBindings(ToShapeId resource, ToShapeId operation)
      Gets a map of identifier names to input member names that provide a value for that identifier.
      Parameters:
      resource - Shape ID of a resource.
      operation - Shape ID of an operation.
      Returns:
      Returns the identifier bindings map or an empty map if the binding is invalid or cannot be found.
    • getOperationOutputBindings

      public Map<String,String> getOperationOutputBindings(ToShapeId resource, ToShapeId operation)
      Gets a map of identifier names to output member names that provide a value for that identifier.
      Parameters:
      resource - Shape ID of a resource.
      operation - Shape ID of an operation.
      Returns:
      Returns the identifier bindings map or an empty map if the binding is invalid or cannot be found.
    • getOperationBindings

      @Deprecated public Map<String,String> getOperationBindings(ToShapeId resource, ToShapeId operation)
      Gets a map of identifier names to input member names that provide a value for that identifier.
      Parameters:
      resource - Shape ID of a resource.
      operation - Shape ID of an operation.
      Returns:
      Returns the identifier bindings map or an empty map if the binding is invalid or cannot be found.