Class OperationShape.Builder

    • Constructor Detail

      • Builder

        public Builder()
    • Method Detail

      • input

        public OperationShape.Builder input​(ToShapeId inputShape)
        Sets the input shape ID of the operation.
        Parameters:
        inputShape - Shape ID that MUST reference a structure. Set to null to clear.
        Returns:
        Returns the builder.
      • output

        public OperationShape.Builder output​(ToShapeId outputShape)
        Sets the output shape ID of the operation.
        Parameters:
        outputShape - Shape ID that MUST reference a structure. Set to null to clear.
        Returns:
        Returns the builder.
      • errors

        public OperationShape.Builder errors​(java.util.Collection<ShapeId> errorShapeIds)
        Sets and replaces the errors of the operation.
        Parameters:
        errorShapeIds - Error shape IDs to set.
        Returns:
        Returns the builder.
      • addError

        public OperationShape.Builder addError​(ToShapeId errorShapeId)
        Adds an error to the operation.
        Parameters:
        errorShapeId - Error shape ID to add.
        Returns:
        Returns the builder.
      • addError

        public OperationShape.Builder addError​(java.lang.String errorShapeId)
        Adds an error to the operation.
        Parameters:
        errorShapeId - Error shape ID to add.
        Returns:
        Returns the builder.
        Throws:
        ShapeIdSyntaxException - if the shape ID is invalid.
      • addErrors

        public OperationShape.Builder addErrors​(java.util.List<ShapeId> errorShapeIds)
        Adds an each of the errors to the operation.
        Parameters:
        errorShapeIds - Error shape IDs to add.
        Returns:
        Returns the builder.
      • removeError

        public OperationShape.Builder removeError​(ToShapeId errorShapeId)
        Removes an error by Shape ID.
        Parameters:
        errorShapeId - Error shape ID to remove.
        Returns:
        Returns the builder.